/* css/style.css */
:root {
    --primary-color: #4f46e5; /* Modern Indigo */
    --secondary-color: #64748b;
    --bg-color: #f3f4f6;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    background-color: var(--bg-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

.card-custom {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
}

.card-custom:hover {
    transform: translateY(-2px);
}

.navbar-custom {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}