/* Global Styles */
body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Dashboard Styles */
.stats-card {
    transition: all 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #0d6efd;
}

/* Waitlist Styles */
.waitlist-item {
    border-left: 4px solid #0d6efd;
    transition: all 0.2s;
}

.waitlist-item:hover {
    background-color: #f8f9fa;
}

.wait-time {
    font-weight: bold;
}

.wait-time-warning {
    color: #fd7e14;
}

.wait-time-danger {
    color: #dc3545;
}

/* Settings Page */
.settings-section {
    margin-bottom: 30px;
}

/* Dispatch Page */
.passenger-card {
    border-left: 4px solid #20c997;
}

.passenger-card.selected {
    background-color: #d1e7dd;
    border-color: #0d6efd;
}

/* History Page */
.history-filters {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.chart-container {
    height: 300px;
    margin-bottom: 30px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }
    
    .btn-responsive {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .navbar .btn {
        margin-top: 10px;
    }
}
