.date-box{
    
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: white;
    background-color: #F47F29;
}

.calendar-sub-title {
    color: var(--Preto, #000);

    /* Desktop/Subtítulo */
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.calendar-title {
    color: var(--Preto, #000);

    /* Desktop/Título - Padrão */
    font-family: Poppins;
    font-size: 51px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 61.2px */
}

.calendar-card-body{
    border-radius: 10px;
    min-height: 100px;
}

.title-text-calendar{
    color: #F47F29;
    font-size: 21px;
    font-weight: 500;
}

.calendar-date{
    font-weight: 600;
    font-size: 18;
    line-height: 100%;
}
.calendar-mounth{
    font-weight: 300;
    font-size: 12;    
    line-height: 100%;
}

.calendar-month-button {
    font-size: 18px;
    background: white;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    margin-bottom: 15px;
    padding: 0.5rem;
    color: var(--Laranja-default, #F47F29);

/* Desktop/Subtítulo */
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.calendar-month-button-open {
    color: #F47F29;
}

.calendar-event-card {
    min-height: 100px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.calendar-event-card:hover {
    transition: color 0.2s ease;
    transform: translateY(-2px);
    opacity: 0.9;
}

.calendar-event-date {
    background-color: #F47F29;
    color: white;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    flex-shrink: 0;
}

.calendar-event-day {
  color: var(--Branco, #FFF);
    text-align: center;

    /* Mobile/Título - Secundário */
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}

.event-add-button{
    justify-content: center;
}

.swal-btn-rounded {
    border-radius: 999px !important;
    padding: 0.5rem 2rem !important;
    font-weight: bold;
}

.calendar-event-month {
    display: flex;
    width: 86px;
    height: 12px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: var(--Branco, #FFF);
    text-align: center;

    /* Mobile/Labels */
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;

}

.calendar-event-details {
    background: #efefef;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    gap: 5px;
}

.calendar-mouth-event-title {
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: Poppins;
    font-weight: 300;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    padding-bottom: 5px;

}

.calendar-mouth-event-description {
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;

}

/* Add pagination styles if they don't exist already */
.pagination .page-item.active .page-link {
    background-color: #F47F29;
    border-color: #F47F29;
    color: white;
}

.pagination .page-link {
    color: #333;
}

.pagination .page-link:hover {
    color: #F47F29;
}

/* Student filter button styles */
.student-filter-container .btn {
    font-size: 9px;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--Cinza-300, #939598);
}

.calendar-student-filter-selected {
    background-color: #F47F29;
    color: white;
    border: none !important;
}

.calendar-student-filter-selected:hover,
.calendar-student-filter-selected:focus,
.calendar-student-filter-selected:active,
.calendar-student-filter-selected[disabled] {
    background-color: #F47F29 !important;
    color: white !important;
    opacity: 0.8;
}

.btn-outline-secondary {
    border-color: #49454F;
    color: #49454F;
    background-color: transparent;
}


.btn-outline-secondary:hover {
    color: black;
    background-color: #dedede !important;
    border-color: #6c757d;
}

.student-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.student-filter-container .bi-check {
    font-size: 14px;
    color: white;
}

/* Load more button styles */
.calendar-load-more-btn {
    background-color: #F47F29;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.calendar-load-more-btn:hover {
    background-color: #e36c1a;
    color: white;
}

/* Event action button styles */
.calendar-event-action-btn {
    background-color: #F47F29;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-event-action-btn:hover {
    background-color: #e36c1a;
    color: white;
}

/* Add styling for empty message */
.calendar-empty-message {
    text-align: center;
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 30px;
}

.calendar-empty-message p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
}

