/* ============================================================
   GENZ BROADBAND — BASE PORTAL & SCAFFOLDING STYLES
   ============================================================ */

.navbar-custom {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-bottom: 2px solid #0d6efd;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    color: #60a5fa !important;
}

.dropdown-item:active {
    background-color: #0d6efd;
}

.avatar-nav {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #60a5fa;
}

.status-dot {
    width: 9px;
    height: 9px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

/* Fixed Header & Footer Scaffolding */
header.sticky-top {
    z-index: 1030;
}

footer.fixed-bottom {
    z-index: 1020;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

main.main-content {
    padding-bottom: 75px !important; /* Prevents overlap with fixed bottom footer */
}

/* ============================================================
   TOP BANNER PRICE CALCULATOR MODAL STYLING
   ============================================================ */
.calc-preset-btn {
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

.calc-metric-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
}

.calc-metric-box .label {
    font-size: 0.74rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.calc-metric-box .value {
    font-family: var(--bs-font-monospace);
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.calc-highlight-box {
    background-color: #eff6ff;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 0.9rem;
}

/* ============================================================
   GLOBAL MOBILE RESPONSIVE TWEAKS (Viewport < 768px)
   ============================================================ */
@media (max-width: 767.98px) {
    /* 1. Unstick footer so it scrolls naturally */
    footer.fixed-bottom {
        position: static !important;
        box-shadow: none !important;
        margin-top: auto;
    }

    /* 2. Remove bottom padding compensation */
    main.main-content {
        padding-bottom: 1.5rem !important;
        margin-top: 1rem !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    /* 3. Notification dropdown full-width adjustment */
    .dropdown-menu-end {
        right: 0 !important;
        left: auto !important;
        max-width: 92vw !important;
    }

    /* 4. Touch target sizes for mobile */
    .nav-link {
        padding: 0.65rem 1rem !important;
    }
}