/*

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */

@media (min-width: 1600px) {
    .modal-dialog-scrollable {
        min-height: 700px !important;
        height: 700px !important;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-wrap: nowrap;
    }

    .modal-dialog-scrollable {
        min-height: auto !important;
        height: 600px !important;
    }
}

#rechazar_alumno .select-list-item {
    display: flex;
    align-items: start;
    gap: 6px;
}

#view_rechazar_alumno .select-list-item {
    display: flex;
    align-items: start;
    gap: 6px;
}

#deny_document_modal .select-list-item {
    display: flex;
    align-items: start;
    gap: 6px;
}

.dashboard-title {
    color: #5a8dee;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: -8px 12px 18px 0 rgba(25, 42, 70, 0.13);
}

.calendar {
    display: flex;
    position: relative;
    padding: 16px;
    margin: 0 auto;
    background: white;
    border-radius: 4px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    flex-direction: column;
    flex: 0 0 calc(25% - 20px);
    /* Adjust the width as needed */
    margin: 10px;
}

.calendar-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.month-year {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.year {
    margin-left: 4px;
    color: #CBD5E1;
}

.days {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    /* margin-right: 46px; */
}

.day-label {
    position: relative;
    flex-basis: calc(14.286% - 2px);
    margin: 1px 1px 12px 1px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #1E293B;
    text-align: center;
}

.weekend {
    background-color: aliceblue;
}

.day {
    position: relative;
    flex-basis: calc(14.286% - 2px);
    margin: 1px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 300;
    height: 29px;
}

.day.dull {
    color: #bac5d3;
}

.day.today {
    color: #0EA5E9;
    font-weight: 600;
}

.day::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.day:hover {
    background: rgba(249, 4, 4, 0.345);
    color: white;
}

.day .content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
}

.btn-outline-purple {
    color: #8A2BE2;
    border-color: #8A2BE2;
    border: 1px solid #8A2BE2;
}

.btn-outline-purple:hover {
    color: #FFFFFF;
    background-color: #8A2BE2;
    border-color: #8A2BE2;
}

.btn-outline-purple:focus,
.btn-outline-purple.focus {
    box-shadow: 0 0 0 0.2rem rgba(138, 43, 226, 0.5);
}

.bg-purple {
    background-color: #6f42c1 !important;
    color: white;
}

.text-purple {
    color: #6f42c1 !important;
}