/* Date Header Component */
.date-header {
    margin: 32px 0 16px 0;
    padding: 0;
    width: 100%;
}

.date-header:first-child {
    margin-top: 0;
}

.date-header__content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    border-left: 4px solid #16A34A;
}

.date-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #16A34A;
    border-radius: 6px;
    color: white;
    flex-shrink: 0;
}

.date-header__title {
    flex: 1;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

.date-header__count {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    padding: 4px 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .date-header__content {
        background: #374151;
        border-color: #4b5563;
    }
    
    .date-header__title {
        color: #f9fafb;
    }
    
    .date-header__count {
        background: #4b5563;
        color: #d1d5db;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .date-header {
        margin: 24px 0 12px 0;
    }
    
    .date-header__content {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .date-header__icon {
        width: 28px;
        height: 28px;
    }
    
    .date-header__title {
        font-size: 16px;
    }
    
    .date-header__count {
        font-size: 13px;
        padding: 3px 6px;
    }
} 