.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: stretch;
    justify-content: center;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.dashboard-section {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.dashboard-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    padding: 1rem 1.25rem;
    flex: 1 1 100%;
    max-width: 100%;
}

.weather-card {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.revenue-card {
    background: linear-gradient(135deg, #ecfdf3 0%, #f7fee7 100%);
}

.schedule-card {
    background: #ffffff;
}

.weather-row {
    align-items: center;
}

.weather-hero {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.weather-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.weather-hero-icon-glyph {
    font-size: 1.8rem;
    color: #2563eb;
}

.weather-hero-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.weather-hero-temp {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
}

.weather-hero-meta {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.weather-hero-sub {
    font-size: 0.8rem;
    color: #475569;
}

.forecast-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #cbd5f5;
}

.forecast-tile {
    flex: 1 1 90px;
    min-width: 90px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    text-align: center;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.forecast-date {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.82rem;
}

.forecast-value {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.98rem;
}

.forecast-meta {
    color: #475569;
    font-size: 0.75rem;
}

.revenue-hero {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.revenue-hero-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
}

.revenue-hero-meta {
    font-size: 0.85rem;
    color: #475569;
}

.revenue-strip {
    border-top-color: #bbf7d0;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-day {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.schedule-day-label {
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.schedule-entry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.schedule-entry.own {
    border-color: #2563eb;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
    background: #e0f2fe;
}

.schedule-time {
    font-weight: 700;
    color: #0f172a;
    min-width: 88px;
}

.schedule-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.schedule-title {
    font-weight: 600;
    color: #0f172a;
}

.schedule-meta {
    color: #475569;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .dashboard-card {
        flex: 1 1 calc(50% - 1.25rem);
    }
}

@media (min-width: 1024px) {
    .dashboard-card {
        flex: 1 1 calc(25% - 1.25rem);
    }
}
