/* Tailwind via CDN; optional custom tweaks below */
/* .table-auto td,
.table-auto th {
    border-bottom: 1px solid #eee;
} */

body.login-page{
    overflow: hidden;
}

.custom-dropdown-button {
    position: relative;
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;

    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

    text-align: left;
    cursor: default;
}

.custom-dropdown-button:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.4);
}

.custom-dropdown-options {
    position: absolute;
    margin-top: 0.25rem;
    width: 100%;
    border-radius: 0.375rem;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 10;
}


.custom-dropdown-options.hidden {
    display: none;
}

.custom-dropdown-options:not(.hidden){
    display: block;
}