/* Dashboard Styles */

.dashboard-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.dashboard-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Booking Card */
.dash-booking-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.dash-booking-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-main-rgb), 0.3);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.booking-header h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.booking-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.booking-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid;
}

.booking-progress-section {
    margin-bottom: 1.5rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.progress-track {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-out;
}

.booking-eta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(0,0,0,0.2);
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

/* Sidebar Cards */
.dash-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.dash-card h3 {
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.75rem;
}

.dash-esg-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dash-esg-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.esg-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.esg-item-badge {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dash-empty-state {
    text-align: center;
    padding: 3rem;
    background: rgba(0,0,0,0.2);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
}
