/* Program Outline Styles */
.month-dot {
    transition: all 0.3s ease;
}

.month-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.program-month {
    transition: all 0.5s ease;
}

.program-month.active {
    display: block;
}

.program-month.hidden {
    display: none;
}

#prev-month, #next-month {
    transition: all 0.3s ease;
}

#prev-month:hover, #next-month:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

#prev-month:hover i, #next-month:hover i {
    color: white;
}

.program-months {
    min-height: 400px;
}

/* Program Month Card Styles */
.program-month-card {
    transition: all 0.3s ease;
}

.program-month-card:hover {
    transform: translateY(-8px);
}

.program-month-card .bg-white {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.program-month-card:hover .bg-white {
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-month-card ul li {
    transition: all 0.3s ease;
}

.program-month-card ul li:hover {
    transform: translateX(5px);
}

.program-month-card .fas.fa-check-circle {
    transition: all 0.3s ease;
}

.program-month-card ul li:hover .fas.fa-check-circle {
    transform: scale(1.2);
}

/* Month Number Circle */
.month-number-circle {
    width: 40px;
    height: 40px;
    background-color: #FF9800 !important; /* Forcing accent color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Homework List Styling */
.homework-list {
    list-style-type: none;
    counter-reset: homework-counter;
    margin-left: 0;
    padding-left: 0;
}

.homework-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.homework-list li:hover {
    transform: translateX(5px);
}

.homework-list li:before {
    content: counter(homework-counter);
    counter-increment: homework-counter;
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Output and Facilities Section */
.bg-white.p-6.rounded-xl {
    transition: all 0.3s ease;
}

.bg-white.p-6.rounded-xl:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px);
}
