.holiday-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.holiday-item {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.holiday-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background: white;
}

.holiday-date {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.holiday-date .day {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.holiday-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.holiday-info {
    flex: 1;
}

.holiday-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.holiday-info p {
    margin: 0;
    color: var(--gray-color);
}

.holiday-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.holiday-major .holiday-date {
    background: var(--secondary-color);
}

.holiday-major .holiday-badge {
    background: rgba(255, 101, 132, 0.1);
    color: var(--secondary-color);
}

.exception-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.exception-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.exception-text {
    flex: 1;
}

.exception-text h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.exception-text p {
    margin: 0;
    color: var(--gray-color);
}

.planning-tips {
    margin: 2rem 0;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip-text {
    flex: 1;
}

.tip-text h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.tip-text p {
    margin: 0;
    color: var(--gray-color);
}

body.dark-mode .holiday-item,
body.dark-mode .exception-card {
    background: #2d3748;
}

body.dark-mode .holiday-item:hover {
    background: #3a4a61;
}

body.dark-mode .holiday-badge {
    background: #4a5568;
    color: #e2e8f0;
}

body.dark-mode .holiday-major .holiday-badge {
    background: rgba(255, 101, 132, 0.2);
    color: #f8a8b8;
}

body.dark-mode .holiday-info h3,
body.dark-mode .exception-text h4,
body.dark-mode .tip-text h4 {
    color: #e2e8f0;
}

body.dark-mode .holiday-info p,
body.dark-mode .exception-text p,
body.dark-mode .tip-text p {
    color: #a0aec0;
}

body.dark-mode .exception-icon {
    background: #1a202c;
    color: var(--primary-light);
}

body.dark-mode .tip-icon {
    background: #1a202c;
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .holiday-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .holiday-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .holiday-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .exception-card {
        flex-direction: column;
        text-align: center;
    }
    
    .exception-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
} 