body {
    font-family: "Raleway", sans-serif;
    padding: 0;
    margin: 0;
}
h3 {
    font-weight: normal;
}
.row {
	margin: 0 15px;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
}
h1.title {
    text-align: center;
}
.flex {
	display: flex;
	align-items: center;
}
.grid {
	display: grid;
}
ul.list-group {
    padding: 0;
    margin: 40px 0;
    gap: 10px;
}
li.list-item.flex {
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    min-height: 44px;
}
button.item-btn {
    border: 2px solid #6f9d33;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
}
button.item-btn:hover {
    background: #6f9d33;
    color: #fff;
}
button.item-btn.red {
    border: 2px solid #e32121;
}
button.item-btn.red:hover {
    background: #e32121;
}
button.item-btn.black {
    border: 2px solid #000;
}
button.item-btn.black:hover {
    background: #000;
}
.btn-group.flex {
    gap: 10px;
    display: none;
}
li.list-item.flex:hover .btn-group.flex {
    display: block;
}
li.list-item.flex h3 {
    margin: 0;
}
form.add-task.flex input {
    padding: 18px 14px;
    border: 2px solid #eee;
    border-radius: 10px;
    width: calc(100% - 200px);
    font-size: 20px;
}
form.add-task.flex button {
    border: 2px solid #008ee1;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
}
form.add-task.flex button:hover {
    color: #fff;
    background: #008ee1;
}
form.add-task.flex {
    justify-content: space-between;
    padding: 0 0 50px;
}
.tbl-top {
    letter-spacing: .1em;
}
.tbl-top.flex {
    justify-content: space-between;
    padding: 5px 0;
}
a.btn-logout, button.btn.btn-primary {
    display: inline-block;
    border: 2px solid;
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
    color: #000;
    font-size: 16px;
    background: transparent;
    font-family: "Raleway", sans-serif;
    letter-spacing: .1em;
}
a.btn.btn-secondary {
    color: #9d9d9d;
    font-size: 14px;
}
input[name="search"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: transparent;
    font-family: "Raleway", sans-serif;
    letter-spacing: .1em;
}
form.login-form {
    max-width: 360px;
    padding: 50px;
    background: #F5F6F7;
    border-radius: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
form.login-form input {
    width: 340px;
    padding: 15px;
    font-size: 18px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: #fff;
}
.form-title {
    font-size: 24px;
    text-align: center;
    padding: 0 0 40px;
}
form.login-form button {
    border: 2px solid #008ee1;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
}
.login-bottom {
    font-size: 14px;
    padding: 19px 0 0;
}
.login-bottom a {
    color: #008ee1;
}
.pagination-wrap.flex {
    justify-content: space-between;
    padding: 40px 0 0;
    letter-spacing: .1em;
}
ul.pagination {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
    justify-content: center;
}
ul.pagination a {
    color: #444;
    text-decoration: none;
}
ul.pagination li.page-item.active a, ul.pagination a:hover {
    color: #008ee1;
}
li.page-item.disabled {
    display: none;
}
select#limit {
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
}
a.status-filter.active, a.status-filter:hover {
    color: #008ee1;
}
a.status-filter {
    color: #000;
    text-decoration: none;
}
span.todo-item-tx.done {
    color: #696868;
    text-decoration: line-through;
}
.error {
    padding: 10px 0;
    color: #e32121;
}
.saccess {
    padding: 10px 0;
    color: #008ee1;
}
a.user-name {
    color: #008ee1;
    text-decoration: none;
}
