*{
    margin: 0;
    padding: 0;
}

body{
    background-color: var(--dark-green);
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

header{
    z-index: 9;
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    top: 0;
    height: 7em;
    transition: 0.2s;
}

.header-short{
    transition: 0.2s;
    height: 4em;
    box-shadow: 0 0.5px 5px 0 var(--black);
}

.logo-container{
    padding-left: 0.8em;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    height: 100%;
}

.logo-container a{
    height: 75%;
}

.logo-container .logo{
    transition: 0.1s;
    height: 100%;
}

.logo-container .logo:hover{
    transition: 0.1s;
    filter: brightness(1.1);
}

.logo-hospital{
    width: auto;
}

.logo-univ{
    width: auto;
}

.logout-container{
    display: flex;
    height: stretch;
}

.logout-button{
    position: relative;
    top: 0;
    padding-left: 0.3em;
    padding-right: 0.1em;
    background-color: var(--white);
    border-end-start-radius: 1em;
    height: max-content;
    border: none;
    transition: 0.1s;
}

.logout-button:hover{
    transition: 0.1s;
    opacity: 0.9;
    cursor: pointer;
}

.logout-icon{
    width: 38px;
    height: 38px;
    stroke-width: 5;
    fill: var(--dark-green);
}

footer{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0.2em;
    z-index: 11;
}

footer a{
    text-decoration: none;
    opacity: 0.5;
    transition: 0.1s;
}

footer a:hover{
    transition: 0.1s;
    opacity: 0.7;
}

.nothing{
    font-size: 1.2em;
    font-weight: 500;
    width: 100%;
    text-align: center;
    height: stretch;
    align-content: center;
    color: var(--gray);
    opacity: 0.7;
    flex : 1
}

.hide{
    display: none;
}


.module-scroll {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.module-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.module-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.module-scroll::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.module-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}

.title-data-table{
    text-align: left;
    position: sticky;
    background-color: var(--dark-purple);
    left: 0;
    z-index: 2; /* Changed from 0 to 2 to ensure it's above the sticky header when scrolling horizontally */
    width: 17em;
    min-width: 17em;
    max-width: 17em;
    white-space: normal;
    word-wrap: break-word;
}

.holiday{
    background-color: var(--magenta);
}

.holiday-caption{
    background-color: var(--magenta);
    padding: 0.5em;
    color: var(--white);
    font-size: 1.3em;
    border: 1px solid var(--white);
    cursor: help;
    width: max-content;
    align-self: center;
}

.input-group{
    border: solid 1px var(--black) ;
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    width: auto; /* Changed from 1.5em to auto */
    height: 100%; /* Changed from 2em to 100% */
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    padding: 0.2em;
    font-size: 0.9em; /* Increased font size for better readability */
}

.table-input-label {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

table td label {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}