body {
    /* Netplus Branding Background */
    background: linear-gradient(135deg, #f0f2f5 0%, #e2e6ea 100%);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(13, 110, 253, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 20%);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #344767;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #002b5c 0%, #0043a8 100%) !important;
    /* Netplus Blue */
    border-bottom: 3px solid #ff9800;
    /* Netplus Orange Accent */
}

/* Map */
#map {
    height: 450px;
    width: 100%;
    z-index: 1;
}

/* Cards */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card-header {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    font-weight: 600;
}

/* Inputs */
.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid #e0e6ed;
    font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #e0e6ed;
    color: #6c757d;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Custom Scrollbar for dropdowns if needed */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}