/* KidsCal - Modern Co-parenting Calendar */
/* Design: Clean, warm, approachable */

:root {
    /* Colors */
    --color-bg: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-surface: #ffffff;
    --color-surface-dark: #1e293b;
    --color-border: #e2e8f0;
    --color-border-dark: #334155;
    --color-text: #1e293b;
    --color-text-dark: #f1f5f9;
    --color-text-muted: #64748b;
    --color-primary: #4A90D9;
    --color-primary-hover: #3b7fc8;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-tbc: #6B7280;
    --color-holiday: #10B981;
    
    /* Parent colors (will be overridden by user settings) */
    --color-parent1: #4A90D9;
    --color-parent2: #D94A8C;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Font */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: var(--color-bg-dark);
        --color-surface: var(--color-surface-dark);
        --color-border: var(--color-border-dark);
        --color-text: var(--color-text-dark);
    }
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: #4A90D9;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.app-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

@media (prefers-color-scheme: dark) {
    .app-header {
        background: rgba(30, 41, 59, 0.9);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 700;
    color: #4A90D9;
}

.logo-icon {
    font-size: 1.5rem;
}

/* Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: var(--color-bg);
    color: #4A90D9;
}

.nav-link.active {
    background: var(--color-primary);
    color: white;
}

.nav-badge {
    background: var(--color-danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
    min-width: 1.2rem;
    text-align: center;
}

/* User menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.user-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-logout {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
}

/* Main content */
.app-main {
    flex: 1;
    padding: var(--space-lg) 0;
}

/* Page header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Cards */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-bg);
    color: #4A90D9;
    border: 1px solid var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--color-border);
}

.btn-success {
    background: var(--color-success);
    color: white;
}

.btn-success:hover:not(:disabled) {
    filter: brightness(1.1);
}

.btn-danger {
    background: var(--color-danger);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    filter: brightness(1.1);
}

.btn-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
}

.btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
}

.btn-icon {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    font-size: 0.9rem;
    color: #4A90D9;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--color-surface);
    color: #4A90D9;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-color {
    width: 60px;
    height: 40px;
    padding: var(--space-xs);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
}

/* Calendar Styles */
.calendar-container {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.calendar-title {
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 200px;
    text-align: center;
}

.view-switcher {
    display: flex;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.view-btn {
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.view-btn:hover {
    background: var(--color-bg);
}

.view-btn.active {
    background: var(--color-primary);
    color: white;
}

/* Year View */
.year-view {
    padding: var(--space-lg);
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.month-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.month-header {
    background: var(--color-bg);
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--color-border);
}

.weekday-header {
    background: var(--color-bg);
    padding: var(--space-xs);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.day-cell {
    background: var(--color-surface);
    padding: var(--space-xs);
    min-height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    font-size: 0.8rem;
}

.day-cell:hover {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.day-cell.empty {
    background: var(--color-bg);
    cursor: default;
}

.day-cell.empty:hover {
    transform: none;
    box-shadow: none;
}

.day-cell.today {
    font-weight: 700;
}

.day-cell.today::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

.day-cell.selected {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.day-cell.in-range {
    background: rgba(74, 144, 217, 0.2) !important;
}

.day-cell.has-event::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 5px;
    height: 5px;
    background: var(--color-warning);
    border-radius: 50%;
}

.day-cell.has-holiday {
    border: 2px solid var(--color-holiday);
}

.day-cell.pending-request {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.1) 3px,
        rgba(0, 0, 0, 0.1) 6px
    );
}

/* Month View */
.month-view {
    padding: var(--space-lg);
}

.month-view .month-grid {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.month-view .day-cell {
    min-height: 80px;
    padding: var(--space-sm);
    align-items: flex-start;
    justify-content: flex-start;
}

.month-view .day-number {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.day-events {
    font-size: 0.7rem;
    width: 100%;
}

.day-event {
    background: var(--color-warning);
    color: white;
    padding: 1px 4px;
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Week View */
.week-view {
    padding: var(--space-lg);
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-md);
}

.week-day-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
}

.week-day-header {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
}

.week-day-content {
    padding: var(--space-md);
}

/* Legend */
.calendar-legend {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Stats */
.stats-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
}

.stat-percent {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Request cards */
.request-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.request-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-fast);
}

.request-card:hover {
    box-shadow: var(--shadow-md);
}

.request-card.pending {
    border-left: 4px solid var(--color-warning);
}

.request-card.approved {
    border-left: 4px solid var(--color-success);
}

.request-card.declined {
    border-left: 4px solid var(--color-danger);
}

.request-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.request-dates {
    font-weight: 600;
}

.request-status {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    font-weight: 600;
}

.request-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.request-status.approved {
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-success);
}

.request-status.declined {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.request-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.request-reason {
    background: var(--color-bg);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.request-actions {
    display: flex;
    gap: var(--space-sm);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: #4A90D9;
}

.modal-body {
    padding: var(--space-lg);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

/* Toast notifications */
.toast-container {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast.error {
    border-left: 4px solid var(--color-danger);
}

.toast.warning {
    border-left: 4px solid var(--color-warning);
}

/* Table */
.table-container {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    background: var(--color-bg);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.table tr:hover {
    background: var(--color-bg);
}

/* Audit log */
.audit-entry {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.audit-time {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    min-width: 140px;
}

.audit-content {
    flex: 1;
}

.audit-action {
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.audit-details {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Landing page */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.landing-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    width: 100%;
}

.landing-logo {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.landing-title {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.landing-subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: #1e293b;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: #4A90D9;
    transition: all var(--transition-fast);
}

.btn-google:hover {
    background: #334155 !important;
    color: white !important;
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-main {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
    }
    
    .nav-link span:not(.nav-badge) {
        display: none;
    }
    
    .user-name {
        display: none;
    }
    
    .calendar-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .calendar-nav {
        justify-content: space-between;
    }
    
    .view-switcher {
        justify-content: center;
    }
    
    .year-grid {
        grid-template-columns: 1fr;
    }
    
    .week-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal {
        max-height: 100vh;
        border-radius: 0;
    }
}

/* Utilities */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 600; }

/* Print styles */
@media print {
    .app-header,
    .calendar-toolbar,
    .btn,
    .nav-main,
    .modal-overlay {
        display: none !important;
    }
    
    .calendar-container {
        box-shadow: none;
        border: none;
    }
    
    .day-cell {
        border: 1px solid #ccc;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/* Google button fix */
.btn-google {
    background: #1e293b !important;
    color: #4A90D9 !important;
}
.btn-google:hover {
    background: #334155 !important;
    color: white !important;
}

/* Mobile month view fixes */
@media (max-width: 768px) {
    .month-view {
        padding: var(--space-sm);
    }
    
    .month-view .month-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
    }
    
    .month-view .weekday-header {
        font-size: 0.6rem;
        padding: 4px 2px;
    }
    
    .month-view .day-cell {
        min-height: 50px;
        padding: 2px;
        font-size: 0.75rem;
    }
    
    .month-view .day-number {
        font-size: 0.7rem;
    }
    
    .month-view .day-events {
        display: none;
    }
    
    .month-view .day-event {
        font-size: 0.5rem;
        padding: 1px 2px;
    }
    
    /* Toolbar adjustments for mobile */
    .calendar-toolbar {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .calendar-toolbar .btn-sm {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .view-switcher .view-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .month-view .day-cell {
        min-height: 40px;
    }
    
    .month-view .weekday-header {
        font-size: 0.55rem;
    }
}
