.container {
    max-width: 1200px;
}
.nav-tabs .nav-link {
    font-size: 18px;
}
h2 {
    color: #007bff;
}



/* ===== MODULE NAVBAR — red banner (see also #site-module-nav in base.html) ===== */
#site-module-nav.nav.nav-tabs,
nav.nav.nav-tabs {
    background: linear-gradient(to right, #ff4d4d, #ff8080) !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 10px;
    padding: 5px;
    margin-left: 12px;
    margin-right: 12px;
    flex-wrap: wrap;
    gap: 2px;
}
#site-module-nav .nav-link,
.nav-tabs .nav-link {
    color: white !important;
    font-weight: bold;
    transition: 0.3s;
    border: none !important;
    background: transparent !important;
}
#site-module-nav .nav-link:hover,
.nav-tabs .nav-link:hover {
    color: #fff !important;
    opacity: 0.95;
    border: none !important;
}
#site-module-nav .nav-link.active,
.nav-tabs .nav-link.active {
    background: white !important;
    color: #ff4d4d !important;
    border-radius: 8px;
}

/* ===== FORM SECTION (LEFT SIDE) ===== */
.col-md-8 {
    background: linear-gradient(to bottom, #fff5f5, #ffe5e5); /* Soft red gradient */
    border: 2px solid #ff4d4d;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(255, 77, 77, 0.3); /* Red glow */
    padding: 20px;
}

/* ===== CUSTOMER INFO SECTION (RIGHT SIDE) ===== */
.col-md-4 {
    background: linear-gradient(to bottom, #f8f9fa, #e3e6e8); /* Soft gray gradient */
    border: 2px solid #adb5bd;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(108, 117, 125, 0.3); /* Soft shadow */
    padding: 20px;
}

/* ===== BUTTON STYLING ===== */
.btn-primary {
    background-color: #007bff;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* ===== ICON POSITIONING IN SELECT DROPDOWNS ===== */
.position-relative i {
    color: #ff4d4d;
}

/* ===== IMAGE STYLING ===== */
.img-fluid {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 3px;
    background: white;
}
