body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

th {
    border-bottom: 1px solid rgb(9, 1, 61);
    padding: 10px 6px;
}

td {
    padding: 10px 6px;
}

section {
    width: 700px;
    margin: 10px auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

ul {
    margin: 0;
    padding: 0;
}

.list {
    list-style: none;
    height: 100%;
}

.navigation {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.navigation-list {
    display: flex;
    height: 100%;
}

.navigation-item {
    margin-right: 15px;
}

.navigation-link {
    /* display: inline-block; */
    display: flex;
    align-items: center;
    height: 100%;
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.navigation-link:active,
.navigation-link:hover {
    text-decoration: underline;
    color: #2076f8;
}

.navigation-link--active {
    color: #2076f8;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.actions-list {
    display: flex;
    list-style: none;
}

.actions_button {
    color: #fcfcfc;
    background-color: green;
    border: 1px solid rgb(0, 90, 0);
    border-radius: 3px;
    padding: 10px 10px;
    min-width: 150px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

}

.actions_button:active,
.actions_button:hover {
    background-color: rgb(0, 90, 0);
}

.search-form {}

.search-form_field {
    padding: 5px;
    font-family: inherit;
    font-size: 14px;
}

.clients-list {
    width: 100%;
    margin: 10px auto;
    border-spacing: 0;
}

.clients-list_head-row {
    /* border-bottom: 1px solid black; */
    text-align: left;
}

.clients-list_row {
    text-align: left;
    background-color: #fff;
}

.clients-list_row:nth-child(2n) {
    background-color: #F9F9F9;
}

.selected {
    background-color: #B0BED9;
}

.clients-list_cel {
    border-bottom: 1px solid #DDDDDD;
    padding: 10px 6px;
}

.clients-list_cel__actions {
    width: 75px;
    text-align: center;
}

.clients-list_button {
    color: red;
    border: none;
    background-color: inherit;
    cursor: pointer;
}

.clients-list_button:hover,
.clients-list_button:focus {
    color: black;
    background-color: rgb(255, 149, 149);
    text-decoration: underline;
}

/* Modal */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 250ms linear;
}

.backdrop.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.modal {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 500px;
    /* height: 300px; */
    /* padding: 25px; */
    background-color: #fff;
    border-radius: 8px;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 250ms linear;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #E5E5E5;
}

.modal-close__button {
    background-color: inherit;
    border: none;
    cursor: pointer;
}

.modal-footer {
    display: block;
    border-top: 1px solid #E5E5E5;
    height: 50px;
    padding: 0 20px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    /* align-items: stretch; */
    height: 100%;
    padding: 7px 0;
}

.modal-button {
    padding: 8px 12px;
    font-family: inherit;
    font-size: 14px;
    color: #333333;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
    cursor: pointer;
}

.modal-button:active,
.modal-button:hover {
    background-color: #E6E6E6;
}

.add-record {
    color: #fff;
    background-color: #337AB7;
    border-color: #2E6DA4;
    margin-left: 8px;
}

.add-record:active,
.add-record:hover {
    background-color: #286090;
}

.modal-content {
    padding: 10px;
}

.modal-form {
    background-color: #F5F5F5;
    border: 1px solid #CCCCCC;
}

.modal-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.modal-form__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-form__label:not(:last-child) {
    margin-bottom: 10px;
}

.modal-form__field {
    width: 250px;
    padding: 5px;
}