/* Blocks */
.dataTables_wrapper, .input-form {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    font-size: 14px;
    color: #505050;
}

/* Buttons */
.generic-button {
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: royalblue;
}
.generic-button:hover {
    background-color: #2a4491;
}

.delete-button {
    border-radius: 6px;
    width: 24px;
    height: 24px;
    padding: 0;
    color: rgba(255,255,255,0);
    font-family: "Material Symbols Outlined";
    overflow: hidden;
    font-size: 1px;
    background-color: rgba(255, 0, 0, .05);
}

.delete-button:before {
    content: '\e872';
    color: red;
    font-size: 18px;
    font-weight: normal;
    margin-left: 3px;
}

.edit-button {
    border-radius: 6px;
    width: 24px;
    height: 24px;
    padding: 0;
    color: rgba(255,255,255,0);
    font-family: "Material Symbols Outlined";
    overflow: hidden;
    font-size: 1px;
    background-color: rgb(0 110 255 / 5%);
}

.edit-button:before {
    content: '\e3c9';
    color: rgb(0 110 255);
    font-size: 18px;
    font-weight: normal;
    margin-left: 3px;
}

.details-button {
    border-radius: 6px;
    width: 24px;
    height: 24px;
    padding: 0;
    color: rgba(255,255,255,0);
    font-family: "Material Symbols Outlined";
    overflow: hidden;
    font-size: 1px;
    background-color: rgb(0 110 255 / 5%);
}

.details-button:before {
    content: '\e8b6';
    color: #24caa6;
    font-size: 18px;
    font-weight: normal;
    margin-left: 3px;
}

.delete-button:hover:before, .edit-button:hover:before, .details-button:hover:before { 
    color: white 
}

/* Pagination */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: transparent !important;
    padding: 4px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    border-color: #ebeced !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-color: #ebeced !important;
}

/* Forms */
.input-form {
    background-color: white;
}

.input-form .input-line {
    flex-direction: column;
    margin-bottom: 8px;
    padding: 0;
}

.input-line input, .input-line select, textarea {
    border: solid 1px #d9d9d9;
    border-radius: 6px;
    display: block;
    padding: 8px !important;
    font-size: 14px;
}

.input-line label {
    width: auto;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
}

.input-line br {
    display: none;
}

/* Modal */
.modal-content.delete {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20% !important;
    border: none;
    background-color: white;
    border-radius: 8px;
}

.form-container {
    display: flex;
    flex-flow: column;
    gap: 2em;
    background-color: white;
    padding: 16px;
    border-radius: 16px;
}

.form-container .form-row {
    display: flex;
    flex-flow: row wrap;
    gap: 0.3em;
    width: 100%;
    padding: 0;
    height: auto;
}

.form-content {
    width: 32%;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0;
}

.form-content label {
    display: inline-block;
    max-width: inherit;
    width: auto;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.form-row:last-child {
    justify-content: flex-end;
}

.form-row:last-child .form-content {
    text-align: right;
}

input, select, textarea {
    width: 90% !important;
    border: solid 1px #d9d9d9 !important;
    border-radius: 6px;
    display: block;
    padding: 8px !important;
    font-size: 14px;
}
