

/* ===== FIXED CONTAINER ===== */
.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

/* ===== NAVBAR ===== */
.navbar-pca {
    background: #198754;
    padding: 6px 10px !important;
}

.navbar-pca .navbar-nav.me-auto {
    margin-left: 45px;
}

/* ===== BRAND ===== */
.navbar-pca .navbar-brand {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    max-width: calc(100% - 60px);
    overflow: hidden;
    color: #fff;
    font-weight: 600;
    /* margin-right: 15px; */
}
/* .navbar-pca .navbar-nav.me-auto {
    gap: 8px;
} */
/* ===== LOGO WRAPPER ===== */
.logo-wrapper {
    background: #fff;
    padding: 3px 5px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* 🔥 FORCE SIZE (this is the key fix) */
.logo-wrapper img {
    height: 32px !important;
    width: 32px !important;
    max-width: 32px !important;
    object-fit: contain !important;
    display: block;
}

/* ===== NAV LINKS ===== */
.navbar-pca .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-right: 10px;
    transition: all 0.2s ease;
}

.navbar-pca .nav-link:hover {
    color: #fff;
    text-decoration: none;
}

.navbar-pca .nav-link.active {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.navbar-pca .nav-link::after {
    display: none !important;
}

/* ===== TOGGLER FIX ===== */
.navbar-toggler {
    margin-left: auto;
    flex: 0 0 auto;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    .navbar-pca {
        padding: 5px 8px !important;
    }

    .logo-wrapper img {
        height: 28px !important;
        width: 28px !important;
        max-width: 28px !important;
    }

    .navbar-pca .navbar-brand span.text-white {
        font-size: 14px;
    }
}