:root {
    --primary-color: #0e124f;
}

* { margin: 0; padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}
    ol, ul { list-style: none; }

*, *::before, *::after { box-sizing: border-box; }

a {text-decoration: none; color: inherit;}

html {
    height: 100%;
}

body{
    height: 100%;
    color: var(--primary-color);
    background-color: #f5f5f5;
}

header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

section {
    margin-top: 1rem;
    width: 85%;
}
input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #d5d5d5;
    outline: none;
    height: 8px;
    border-radius: 8px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    cursor: pointer;
    margin-top: -4px;
}
input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    cursor: pointer;
    margin-top: -4px;
}
input[type="range"]::-ms-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    cursor: pointer;
    margin-top: -4px;
}
input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
}
input[type="range"]::-moz-range-track {
    height: 8px;
}
input[type="range"]::-ms-track {
    appearance: none;
    height: 8px;
    border: none;
    color: transparent;
}
input[type="range"]:active::-webkit-slider-thumb {
    background-color: white;
    border: 3px solid var(--primary-color);
}
#range-value {
    width: 5%;
    padding: .5rem 0;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-align: center;
}

.sidebar {
    z-index: 2;
    background-color: white;
    width: max-content;
    max-height: 88vh;
    border-radius: 10px;
    padding: .5rem .25rem;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow-y: auto;
    overflow-x: hidden;
}
.sidebar::-webkit-scrollbar {
    width: 6px;
}
.sidebar::-webkit-scrollbar-track {
    background-color: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: #dcdcdc;
    border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #c0c0c0;
}
.sidebar::-webkit-scrollbar-thumb:active {
    background-color: var(--primary-color);
}
.sidebar:hover .sidebar-element {
    grid-template-columns: 40px 1fr;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.sidebar-element {
    padding: .8rem 1.3rem;
    display: grid;
    grid-template-columns: 40px 0fr;
    border-radius: 3px;
    transition: grid-template-columns .25s;
    text-wrap: nowrap;
    text-align: left;
    user-select: none;

    color: var(--primary-color);
    fill: var(--primary-color);
}
.sidebar-element:not(:has(.sidebar-icon-logo)):hover {
    background-color: var(--primary-color);
    color: white;
    fill: white;
    cursor: pointer;
}
.sidebar-element:has(.sidebar-icon-logo) {
    margin-bottom: 1rem;
    user-select: none;
}
.sidebar-icon {
    width: 24px;
    overflow: hidden;
    justify-self: center;
}
.sidebar-icon-logo {
    max-width: 30px;
}
.sidebar-icon-avatar {
    width: 40px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}
.sidebar-logo, .sidebar-text {
    padding-left: 1.3rem;
}
.sidebar-hide {
    overflow: hidden;
}
.sidebar-element-avatar {
    margin-top: auto;
}
.sidebar-title, .sidebar-info {
    padding-left: 1.3rem;
}
.dropdown-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    margin-top: 0.2rem;
    gap: 0.2rem;
}
.dropdown-menu.show {
    display: flex;
}
.sidebar:not(:hover) .dropdown-menu.show {
    display: none;
}
.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 10px;
}
.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-toggle div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
    
.sub-element {
    padding: 0.6rem 1rem;
    grid-template-columns: 0fr; 
}
.sidebar:hover .sub-element {
    grid-template-columns: 1fr;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding: 0 1rem;
}

.full-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    width: 100%;
    height: 100%;
}

.option-header-buttons{
    display: flex;
    gap: 1rem;
}

.search-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.search-element {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 4vh;
    padding-bottom: 2rem;
}
.search-container h1, .login-container h1{
    font-weight: 600;
    font-size: 3rem;
    text-align: center;
    user-select: none;
}

.form-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.form-navegator{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    width: 100%;
    max-width: 600px;
}
.form-navegator h1 {
    margin-bottom: 1rem;
}
.advanced-navegator{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    width: 100%;
    opacity: 1;
    transition: all .25s allow-discrete;
    flex: 1;

    @starting-style{
        opacity: 0;
        transform: translateY(-50px);
    }
}
.advanced-navegator-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-50px);
    transition: all .25s;
}

#prompt-container {
    align-items: normal;
}
.navegator-item, .animated-navegator-item {
    width: 100%;
    max-width: inherit;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .5rem;
    position: relative;
}
.animated-navegator-item {
    opacity: 1;
    transition: all .25s allow-discrete;
    flex: 1;

    @starting-style{
        opacity: 0;
        transform: translateY(-50px);
    }
}
.animated-navegator-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-50px);
    transition: all .25s;
}
.advanced-navegator-item {
    display: flex;
}
.search-bar{
    padding: .5rem 1rem;
    width: 100%;
    max-width: inherit;
    border: 1px solid grey;
    border-radius: 2rem;
    
}
.search-bar:focus-visible {
    outline: none;
}
.search-button, .absolute-button {
    position: absolute;
    height: 100%;
    right: 0;
}
.absolute-button {
    padding: 0 .75rem;
    color: gray;
    border: 1px solid gray;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color .15s ease;
    user-select: none;
}

.submit-button, .search-button {
    padding: 0 1rem;
    background-color: var(--primary-color);
    color: white;
    border: 0 solid;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color .15s ease;
}
.submit-button {
    padding: .5rem 1rem;
}

.submit-button:hover, .search-button:hover {
    background-color: #2a318f;
}
.submit-button:active, .advanced-button:active, .search-button:active, .absolute-button:active {
    color: var(--primary-color);
    background-color: white;
}
.flex-row {
    display: flex;
    position: relative;
}
.advanced-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    width: 8rem;
}
.advanced-select:disabled {
    cursor: default;
}
.advanced-select, .advanced-button {
    padding: .25rem 1rem;
    color: gray;
    border: 1px solid gray;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color .15s ease;
    user-select: none;
}
.advanced-button:hover, .absolute-button:hover {
    background-color: white;
}

.multiselect-container {
    display: block;
}
.multiselect-container-hidden {
    display: none;
}
.multiselect {
    display: flex;
    flex-direction: column;
}
.multiselect-open ~ .multiselect-list {
    display: flex;
    flex-direction: column;
}
.multiselect-list {
    display: none;
    position: absolute;
    max-width: fit-content;
    width: 100%;
    margin-top: .5rem;
    border-radius: .5rem;
    padding: .5rem;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-height: 300px;
    overflow: auto;
}
.multiselect-element {
    display: flex;
}
.checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding: .5rem 1.5rem;
    user-select: none;
    margin-left: 1rem;
    margin-bottom: .5rem;
    cursor: pointer;
    width: 100%;
}
.checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
}
.check {
    position: absolute;
    height: 1rem;
    width: 1rem;
    border: 2px solid #e7e7e7;
    border-radius: 50%;
    left: 0;
}
.checkbox:hover input ~ .check{
    border-color: transparent;
    background-color: #ededed;
}
.checkbox input:checked ~ .check{
    border-color: transparent;
    background-color: var(--primary-color);
}
.check::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    left: 4px;
    transform: rotate(45deg);
}
.normal-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding: .5rem 1.25rem;
    margin-left: 1rem;
    user-select: none;
    margin-bottom: .5rem;
    cursor: pointer;
}
.normal-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
}

.normal-checkbox:hover input ~ .check{
    border-color: transparent;
    background-color: #ededed;
}
.normal-checkbox input:checked ~ .check{
    border-color: transparent;
    background-color: var(--primary-color);
}

.results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.results-container .results-element:last-child {
    margin-bottom: 4rem;
}
.results-container h2 {
    font-size: 1.2rem;
    text-align: left;
    text-align: center;
}
.results-element {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 2rem 4vw;
    max-width: 950px;
}
.results-title {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
}
.results-title h3 {
    text-align: center;
    font-size: 1.25rem;
}
.results-info-container {
    display: flex;
    flex-direction: row;
    padding: 1.27rem;
    max-width: 800px;
    gap: 2rem;
    align-items: center;
}
.results-info {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.results-card {
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.result-image {
    height: 120px;
}
.database-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    background-color: white;
    border-radius: 1rem;
    padding: 1.27rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.database-card .date {
    text-align: center;
    font-size: .9rem;
}
.results-card-list {
    height: 100%;
}
.results-card-list p, .results-card-list b{
    font-size: 1.2rem;
}

.results-element-gemini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gemini-card {
    max-width: 720px;
}
.results-element-news {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.results-element-datalists {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.news-list, .list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.news-link {
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    border-radius: .5rem;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-width: 400px;
    height: max-content;
}
.news-link img {
    border-radius: .5rem 0 0 .5rem;
    -webkit-user-drag: none;
    width: 100%;
    max-width: 70px;
    height: 65px;
    max-height: 65px;
    flex: 1 1 100%;
    object-fit: cover;
    background-color: white;
}
.news-link p {
    padding: .5rem 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news-link:hover {
    color: white;
    background-color: var(--primary-color);
}

.login-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 450px;
}
.login-container .checkbox {
    margin: 0;
    padding: 0 1.5rem;
}

.url-text {
    color: #2a318f;
    text-decoration: underline;
}

.message {
    position: fixed;
    bottom: 0;
    padding: 1rem 3rem;
    background-color: gray;
    color: white;
    width: 100%;
    z-index: 999;
}
.message.hidden {
    display: none;
}
.message li {
    font-size: 1.25rem;
}
.message.error {
    background-color: #ffcccc;
    color: red;
}
.message.ok {
    background-color: #cfffcc;
    color: green;
}

.manage-users-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.manage-users-container h1 {
    font-size: 2rem;
    font-weight: bold;
}
.table {
    display: table;
    background-color: transparent;
    table-layout: fixed;
    margin: 1rem 0rem;
    min-width: 85%;
    border-collapse: separate; 
    border-spacing: 0 .5rem;
}
.row {
    display: table-row;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.table-header {
    display: table-header-group;
    background-color: #0e124f;
}
.table-header .column {
    color: white;
    margin: 0;
    font-weight: bold;
}
.big-header {
    width: 300px;
}
.column {
    display: table-cell;
    padding: .5rem 1rem;
    text-align: left;
    vertical-align: middle;
}
.results-column {
    width: 400px;
}
.column p, .column a {
    font-size: 1rem;
}
.column .flex-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.table .row .column{
    background-color: #fefdfd;
}
.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.815);
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 3rem;
}
.loader span {
    display: inline-block;
    font-size: 3rem;
}

.hidden {
    display: none;
}

.results-element-comments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.comments-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
}
.comment-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #f0f0f0;
      color: #0e124f;
      border: none;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
    }

    .close-btn:hover {
      background-color: #e3e3e3;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .modal-openAtStart {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .update-content {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 20px;
        border-radius: 8px;
        width: 80%;
        max-width: 500px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .update-content li {
        list-style: disc;
        margin-left: 1rem;
    }
    .update-content h2 {
        text-align: center;
        font-size: 1.5rem;
    }
    .update-content .submit-btn {
        margin-top: 1rem;
        align-self: center;
    }

    .modal-content {
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 20px;
      border-radius: 8px;
      width: 300px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .modal-content-user {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 20px;
        border-radius: 8px;
        width: 300px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .modal-content-user input, .modal-content-item input {
        width: 100%;
        height: 40px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        font-size: 16px;
        background-color: #f0f0f0;
        color: #333;
      }
    .modal-content-item {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: .5rem;
    }
    .modal-content-item p {
        font-weight: bold;
        padding-left: 10px;
    }

    textarea {
      width: 100%;
      height: 80px;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 10px;
      font-size: 16px;
      background-color: #f0f0f0;
      color: #333;
    }

    .submit-btn {
      margin-top: 10px;
      padding: 10px 20px;
      font-size: 16px;
      background-color: #252b88;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .submit-btn:hover {
      background-color: #0e124f;
    }

    .cancel-btn {
      margin-top: 10px;
      margin-left: 10px;
      padding: 10px 20px;
      font-size: 16px;
      background-color: #ff4d4d;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .cancel-btn:hover {
      background-color: #ff1b1b;
    }

.faq-question {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 70%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}
.faq-question h2, .user-container h2 {
    font-size: 1.5rem;
}
.faq-question p, .user-container p {
    font-size: 1rem;
}

.user-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 40%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.user-container button {
    margin-top: 1rem;
}
.user-container .flex-row {
    display: flex;
    width: 100%;
    padding: 0 2rem;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
}
.flex-row .range-input {
    width: 100%;
}
.flex-row #range-value {
    width: auto;
    min-width: 40px;
}

.api-token-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.api-token-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.list {
    padding: 0 1.5rem;
}

.list li {
    list-style: disc;
}
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}

#pdf-preview-container {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

#pdf-canvas {
    width: 450px;
    height: auto;
}

#country-flag {
    width: 48px;
    height: 32px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: absolute;
    right: 20%;
    top: 10%;
    pointer-events: none;
}
.alert-bg {
    background-color: #ffeb3b; /* amarillo base por defecto */
    color: #000;
    transition: background-color .15s ease, color .15s ease;
}
.table .row.alert-bg:nth-child(even) .column {
    background-color: #ffee50;
    color: #000;
}
.table .row.alert-bg:nth-child(odd) .column {
    background-color: #f3e354;
    color: #000;
}
/* Contenedor principal de la paginación (el <ul>) */
.pagination {
    display: flex; /* Alinea los elementos horizontalmente */
    padding-left: 0;
    list-style: none; /* Quita los puntos de la lista */
    margin-top: 1rem;
    margin-bottom: 1rem;
    justify-content: center; /* Centra la paginación */
}

/* Cada "cajita" (el <li>) */
.page-item {
    margin: 0 3px; /* Espacio entre los botones */
}

/* Estilo de los enlaces (<a>) y spans (<span>) dentro de las cajitas */
.page-link {
    display: block;
    padding: 0.5rem 0.85rem; /* Tamaño interno */
    color: var(--primary-color); /* Color del texto (azul) */
    text-decoration: none; /* Quita el subrayado */
    background-color: #fff; /* Fondo blanco */
    border: 1px solid #dee2e6; /* Borde gris */
    border-radius: 0.25rem; /* Bordes redondeados */
    transition: all 0.2s ease-in-out;
}

/* Estilo al pasar el mouse (hover) sobre los enlaces */
.page-link:hover {
    z-index: 2;
    color: var(--primary-color);
    background-color: #e9ecef; /* Fondo gris claro */
    border-color: #dee2e6;
}

/* Estilo del ítem activo (página actual) */
.page-item.active .page-link {
    z-index: 3;
    color: #fff; /* Texto blanco */
    background-color: var(--primary-color); /* Fondo azul */
    border-color: var(--primary-color);
}

/* Estilo de los ítems deshabilitados (ej. "Anterior" en la pág 1) */
.page-item.disabled .page-link {
    color: #6c757d; /* Texto gris */
    pointer-events: none; /* Evita que se pueda hacer clic */
    background-color: #fff;
    border-color: #dee2e6;
}

.table-header-filter {
    position: relative;
    width: 100%;
    user-select: none;
}
.table-header-filter select {
    appearance: none;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    width: 100%;
    font-weight: bold;
    padding-right: 1.5rem;
    cursor: pointer;
    text-wrap: wrap;
    text-align: center;
}
.table-header-filter select option {
    color: var(--primary-color);
}
.filter-icon {
    position: absolute;
    fill: white;
    justify-self: center;
    overflow: hidden;
    right: 0;
    pointer-events: none;
    cursor: pointer;
}

#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
#resetForm {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}