.navbar {
    background-color: #E0E0E0;
}

.navbar.is-transparent {
    background-color: transparent;
    background-image: none;
}

.rounded-custom {
    border-radius: 0px 4px 4px 0px;
}

.rounded {
    border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -ms-border-radius: 6px 6px 6px 6px;
    -o-border-radius: 6px 6px 6px 6px;
}

.navbar-item,
.navbar-link,
.navbar-burger {
    border-radius: 6px 6px 6px 6px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #757763;
    border-radius: 10px;
}

.hide-scrollbar {
    /* hide scrollbar but allow scrolling */
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    overflow-y: scroll;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

.navbar-burger {
    height: auto;
}

#navbar-logo {
    width: 100%;
}

#navbar-logo img {
    max-height: 70px;
}

/* Full-screen white background */
.loader-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    /* Background color */
    /* opacity: 0.85; */
    /* Slight transparency */
    z-index: 9998;
    /* Below the loader */
    display: none;
    /* Hidden initially */
}

/* Loader */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #284582e2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    /* Above the white background */
    display: none;
    /* Hidden initially */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toast {
    display: none;
    /* Initially hidden for jQuery fade-in effect */
    cursor: default;
    /* Set cursor to default arrow */
    user-select: none;
    /* Prevent text selection */
    padding-left: 20px;
    /* Adjust left padding */
    padding-right: 20px;
    /* Adjust right padding */
    box-sizing: border-box;
    /* Ensure padding doesn’t affect width */
}

/* .box {
padding: 40px;
position: relative;
}
.box h2 {
text-align: center;
font-family: "Montserrat", sans-serif;
padding: 1.5rem 0;
}

.box .button {
padding: 0;
height: 40px;
min-width: 160px;
transition: all 0.3s;
}

.box .button:hover {
background: #ff4f8f;
border-color: #ff4f8f;
color: #fff;
} */

.link-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6dacff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

.link-button img {
    width: 32px;
    height: 32px;
    display: block;
}

.link-button:hover {
    transform: scale(1.1) rotate(180deg);
    background: #ff4f8f;
    -webkit-transform: scale(1.1) rotate(180deg);
    -moz-transform: scale(1.1) rotate(180deg);
    -ms-transform: scale(1.1) rotate(180deg);
    -o-transform: scale(1.1) rotate(180deg);
}

#goToTopButton {
    position: fixed;
    /* Fixed/sticky position */
    bottom: 15px;
    /* Place the button at the bottom of the page */
    right: 15px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
}

#julesLink {
    position: fixed;
    /* Fixed/sticky position */
    top: 15px;
    /* Place the button at the bottom of the page */
    right: 15px;
    /* Place the button 30px from the right */
    z-index: 31;
}

#chronoOpenButton {
    position: fixed;
    /* Fixed/sticky position */
    top: 15px;
    /* Place the button at the bottom of the page */
    right: 75px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
    display: none;
}

#chronoScheduleClockSpan {
    position: fixed;
    /* Fixed/sticky position */
    top: 15px;
    /* Place the button at the bottom of the page */
    right: 80px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
    display: none;
}

#chronoBox {
    position: fixed;
    /* Fixed/sticky position */
    top: 65px;
    /* Place the button at the bottom of the page */
    right: 15px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
    display: none;
}

tr.group,
tr.group:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

:root.dark tr.group,
:root.dark tr.group:hover {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

#notificationsOpenButton {
    position: fixed;
    /* Fixed/sticky position */
    top: 15px;
    /* Place the button at the bottom of the page */
    right: 110px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
    display: none;
    cursor: pointer;
}

#helpCenterOpenButton {
    position: fixed;
    /* Fixed/sticky position */
    top: 15px;
    /* Place the button at the bottom of the page */
    right: 70px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
    cursor: pointer;
}

#notificationsBox {
    position: fixed;
    /* Fixed/sticky position */
    top: 65px;
    /* Place the button at the bottom of the page */
    right: 220px;
    /* Place the button 30px from the right */
    z-index: 31;
    /* Make sure it does not overlap */
    display: none;
}

.chronoMessage {
    display: none;
}

.break-word {
    word-break: break-word;
}

@media screen and (min-width: 1000px) {
    .modal-card-big {
        width: 1000px;
        height: 95%;
    }
}

@media screen and (max-width: 1240px) {
    .modal-card-big {
        width: 95%;
        height: 95%;
    }
}

.mw200px {
    min-width: 200px
}

.mw300px {
    min-width: 300px
}

.w-auto {
    width: auto;
}

.w-600px {
    width: 600px;
}

.w-800px {
    width: 800px;
}

.w-95 {
    width: 95%;
}

.w-100 {
    width: 100%;
}

.h-auto {
    height: auto;
}

.h-100 {
    height: 100%;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.h-100vh {
    height: 100vh;
    display: absolute;
}

.margin-0 {
    display: absolute;
}

.absolute {
    display: absolute;
}

.pointer {
    cursor: pointer !important;
}

.hover-primary:hover {
    background-color: #dcedff !important;

}

.text-center {
    text-align: center;
}

.bulma-calendar-wrapper {
    width: 180px;
}

.bc-white {
    background-color: white;
}

div.dataTables_wrapper div.dataTables_filter input {
    height: 40px;
    width: 300px;
}

element {
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    overflow-y: scroll;
}

element::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

#backgroundImage {
    background-repeat: no-repeat;
    background-size: cover;
}

.is-scrollable {
    max-height: 150px;
    /* Establece la altura máxima deseada */
    overflow-y: auto;
    /* Muestra la barra de desplazamiento vertical */
}

.hidden {
    display: none;
}

.font-size-085em {
    font-size: 0.85em;
}

.hover-transition {
    transition: all .5s ease;
    border: 3px solid white;
    outline: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

#newServiceGroupDescriptionSuggestions,
#newProjectTydeServiceGroupDescriptionSuggestions {
    position: relative;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    display: none;
}

.newServiceGroupDescriptionSuggestion,
.newProjectTydeServiceGroupDescriptionSuggestion {
    cursor: pointer;
    padding: 5px;
}

.newServiceGroupDescriptionSuggestion:hover,
.newProjectTydeServiceGroupDescriptionSuggestion:hover {
    background-color: #ddd;
}

.procedureOrganizationHeaderCancel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.inline-elements {
    display: flex;
    align-items: center;
}

.inline-elements .label-text {
    margin-right: 10px;
    /* Espacio entre el texto de la etiqueta y el input/select */
}

.inline-elements .fixed-width {
    width: 150px;
    /* Ajusta el ancho fijo según sea necesario */
}

.inline-elements input[type="text"] {
    margin-right: 10px;
    /* Espacio entre el input de texto y el checkbox */
}

.inline-elements select {
    margin-right: 10px;
    /* Espacio entre el select y el botón de archivo */
}

.inline-elements .file {
    margin-left: 10px;
    /* Ajusta el espaciado según sea necesario */
}

.inline-elements .checkbox {
    margin-left: 10px;
    /* Espacio entre el input y el checkbox */
}

.bulma-calendar {
    position: absolute;
    top: auto !important;
    bottom: 100% !important;
    transform: translateY(-10px);
    /* Puedes ajustar este valor según tu preferencia */
    z-index: 1000;
}

.tab-content {
    display: none;
}

.tab-content.is-active {
    display: block;
}

.background-blue {
    background-color: #28458231 !important;
}

.info {
    color: #486ac7 !important;
}

.success {
    color: #48c774 !important;
}

.warning {
    color: #ffdd57 !important;
}

.danger {
    color: #ff2323 !important;
}

.redAbsence {
    background-color: #ffd5d5;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.pinkAbsence {
    background-color: #f7c4e0;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.greenAbsence {
    background-color: #c7ffbc;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.orangeAbsence {
    background-color: #ffd991;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.yellowAbsence {
    background-color: #fffeac;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.dark-blueAbsence {
    background-color: #b5b5ff;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.greyAbsence {
    background-color: #dddddd;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.aquamarineAbsence {
    background-color: #b4ffe6;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.emeraldAbsence {
    background-color: #9dffbe;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.beigeAbsence {
    background-color: #f5f5dc;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.pendingDay {
    background-color: #ffefa9;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.public_holiday {
    background-color: #d2d2d2;
    color: #000000;
    transition: all 0.2s ease-in-out;
}

.redAbsence:hover,
.pinkAbsence:hover,
.greenAbsence:hover,
.orangeAbsence:hover,
.yellowAbsence:hover,
.dark-blueAbsence:hover,
.greyAbsence:hover,
.aquamarineAbsence:hover,
.emeraldAbsence:hover,
.beigeAbsence:hover,
.pendingDay:hover,
.public_holiday:hover {
    transform: scale(1.1);
}

.rest {
    color: #f14668;
}

.today {
    box-shadow: inset 0px 0px 0px 3px #3e588e;
}

.legendTooltip {
    position: absolute;
    background-color: #ffffff;
    color: #000000;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
    z-index: 10;
}

.legendTooltip::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.legendEntry {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.legendEntry:last-child {
    margin-bottom: 0;
}

.legendColor {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.userName {
    position: relative;
    display: inline-block;
    cursor: default;
}

.userTooltip {
    position: absolute;
    background-color: #ffffff;
    color: #000000;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    top: 5px;
    left: 50%;
    transform: translate(-50%, -100%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s, transform 0.5s ease-in-out;
    z-index: 9999;
}

.userTooltip::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.userName:hover .userTooltip {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -120%);
}

.currentUser {
    color: #3e588e;
}

.startDay {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.endDay {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.mtb {
    margin-top: 0.08rem !important;
    margin-bottom: 0.08rem !important;
}

.day {
    position: relative;
    display: inline-block;
    cursor: default;
}

.dayTooltip {
    position: absolute;
    background-color: #ffffff;
    color: #000000;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    top: 5px;
    left: 50%;
    transform: translate(-50%, -100%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s, transform 0.5s ease-in-out;
    z-index: 10;
}

.dayTooltip::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.day:hover .dayTooltip {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -120%);
}

.wp-nowrap {
    white-space: nowrap;
}

.flex-1 {
    flex: 1;
}

.border-right {
    border-right: 1px solid #a3a3a3;
}

.userName,
.availableEmployees,
.nothing {
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.metaInfo {
    display: grid;
    grid-template-columns: 250px auto;
    grid-template-rows: auto auto;
}

.dateSelector {
    grid-area: 1 / 1 / 3 / 2;
    display: flex;
    align-items: center;
}

.monthInfo {
    grid-area: 1 / 2 / 2 / 3;
}

.weekDayInfo {
    grid-area: 2 / 2 / 3 / 3;
}

.select-all-header {
    text-align: center;
}

.select-all-header input[type="checkbox"] {
    margin: 0 auto;
}

th.select-checkbox.dt-center {
    text-align: center;
    vertical-align: middle;
}

th.select-checkbox.dt-center::after {
    display: none !important;
    /* Ocultar la flecha de ordenación */
}

.modal.is-fullscreen .modal-card {
    width: 95%;
    /* Ajusta el ancho del modal */
    height: 95%;
    /* Ajusta la altura del modal */
    max-height: 95vh;
    /* Limita la altura máxima al 95% del viewport */
    margin: 2.5vh auto;
    /* Centra el modal verticalmente */
}

.modal.is-fullscreen .modal-card-body {
    height: calc(100% - 120px);
    /* Ajusta la altura del cuerpo del modal */
    overflow-y: auto;
    /* Añade scroll si el contenido es demasiado largo */
}

/* Clase para reducir padding interno en la notificación */
.workload-box {
    padding: 0.5rem 0.75rem !important;
    /* Ajusta a tu gusto */
    margin-bottom: 0.5rem !important;
    /* Menos espacio vertical entre cajas */
}

/* Opcional: reducir spacing interno de las columns dentro de la box */
.workload-box .columns {
    margin-left: 0;
    margin-right: 0;
}

/* Opcional: reducir espaciado entre columnas si quieres aún menos altura */
.workload-box .column {
    padding: 0.25rem;
    /* Ajusta a tu gusto */
}

.is-relative {
    position: relative;
}

.button-container {
    position: absolute;
    top: 0;
    right: 0;
}

#viewNewsBox {
    border: 1px solid #d7d7d7;
}

#viewNewsBox:hover {
    border: 1px solid #385190;
}

#newsLink {
    color: #6e6e6e;
}

#newsLink:hover {
    color: #000000;
}

.newsTitle {
    white-space: unset;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.newsImage {
    width: 7em;
    object-fit: cover;
    border-radius: 8px;
}

#mainDashboard {
    padding: 1.5em;
    padding-top: 3em;
    position: absolute;
    top: var(--navbar-height, 52px);
    left: 0;
    right: 0;
    bottom: 0;
}

#dashboardBox {
    display: flex;
    gap: 1.5em;
    height: 100%;
}

#infoBox {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 40%;
    height: 100%;
}

#welcomeBox {
    background-color: #d0d1cd;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 12%;
}

#mainDashWorkerName,
#mainDashDate {
    color: #797979;
}

#notificationBox {
    background-color: #ffffff;
    padding: 1em;
    width: 100%;
    height: 38%;
    display: flex;
    flex-direction: column;
}

#notificationsTitle,
#newsTitle {
    margin-bottom: .5em;
}

#seeMoreNotifications,
#seeMoreNews {
    margin-top: auto;
}

#newsBox {
    background-color: #ffffff;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 50%;
    position: relative;
}

#addNews {
    position: absolute;
    top: 1em;
    right: 1em;
}

#linksBox {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 60%;
    height: 100%;
}

#registrationAllocationTitle,
#performanceTrainingTitle,
#approvalTravelBudgetTitle,
#laborInfoCompensationTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#firstLinks {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    height: 33.33%;
}

#registrationAllocationLinks {
    background-color: #a9dfe4;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 40%;
    height: 100%;
}

#registrationLink {
    background-color: #a9dfe4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

#allocationLink {
    background-color: #bec0ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

#absenceCalendarLink {
    background-color: #dedaeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
}

#budgetLink {
    background-color: #d8eee0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
}

#secondLinks {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    height: 33.33%;
}

#laborInfoCompensationLinks {
    background-color: #b1e6fa;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 100%;
}

#laborInfoCompensationFirstLinks {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

#laborInfoCompensationSecondLinks {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

#profileLink {
    background-color: #b1e6fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#organizationChartLink {
    background-color: #d8eee0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#documentsLink {
    background-color: #bec0ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#tasksLink {
    background-color: #dedaeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#performanceTrainingLinks {
    background-color: #bec0ff;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 100%;
}

#performanceTrainingFirstLinks {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

#performanceTrainingSecondLinks {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}

#performanceLink {
    background-color: #b1e6fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#trainingLink {
    background-color: #bec0ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#evaluationLink {
    background-color: #dedaeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#thirdLinks {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    height: 33.33%;
}

#approvalTravelBudgetLinks {
    background-color: #f5f5ff;
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    width: 50%;
    height: 100%;
}

#approvalTravelLink {
    background-color: #a9dfe4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#approvalBudgetLink {
    background-color: #bec0ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

#ticketingLink {
    background-color: #b1e6fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

.boxClass {
    border-radius: 8px;
    padding: 0 1em;
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
    overflow: auto;
}

.boxDisabled {
    background-color: #d6d6d6 !important;
    color: #797979 !important;
    cursor: not-allowed !important;
}

@media screen and (max-width: 768px) {
    #infoBox {
        width: auto;
        height: auto;
    }

    #welcomeBox {
        height: auto;
    }

    #dashboardBox {
        display: flex;
        flex-direction: column;
    }

    #linksBox {
        width: auto;
    }

    #registrationAllocationLinks {
        width: 100%;
    }

    #registrationAllocationLinks {
        background-color: unset;
        box-shadow: none;
        padding: 0;
    }

    #registrationLink {
        display: flex !important;
    }

    #allocationLink {
        display: flex !important;
    }

    #notificationBox,
    #newsBox,
    #secondLinks,
    #thirdLinks,
    #absenceCalendarLink,
    #budgetLink,
    #registrationAllocationTitle {
        display: none;
    }
}

#workloadsSummaryBox {
    background: #f7f7fa;
    border-radius: 8px;
    padding: 1em;
    margin-top: 1em;
    min-height: 200px;
}

#workloadsSummaryTotals > div,
#workloadsSummaryDetails > div {
    margin-bottom: 0.5em;
}