/* Days Page Styles */
.days-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.days-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.month-section {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

.month-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
    color: #000;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day-link {
    display: block;
    text-align: center;
    padding: 0.5rem;
    text-decoration: none;
    color: #000;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.day-link:hover {
    background-color: #f5f5f5;
    border-color: #999;
    text-decoration: underline;
}

.day-link:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Mobile Styles */
@media (max-width: 640px) {
    .days-container {
        padding: 1rem 0.5rem;
    }
    
    .days-title {
        font-size: 1.5rem;
    }
    
    .months-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .month-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .month-name {
        font-size: 1.25rem;
    }
    
    .days-grid {
        gap: 0.25rem;
        font-size: 0.875rem;
    }
    
    .day-link {
        padding: 0.375rem 0.25rem;
    }
}

/* Print Styles */
@media print {
    .days-container {
        max-width: 100%;
    }
    
    .months-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .month-section {
        break-inside: avoid;
    }
    
    .day-link {
        border: 1px solid #ccc;
        color: #000;
    }
    
    .day-link:hover {
        background-color: transparent;
    }
}