/* Sanad POS — public navbar */

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.navbar .nav-link {
    font-weight: 500;
    color: #23281F;
    margin-right: 18px;
    position: relative;
    transition: color 0.2s ease;
}

.navbar .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #5C7358;
    transition: width 0.25s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #5C7358;
}

.btn-demo {
    background-color: #5C7358;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-demo:hover {
    background-color: #4A5D47;
    color: #fff;
}

.nav-link-portal {
    font-weight: 600;
    font-size: 14px;
    color: #4A5D47;
    white-space: nowrap;
}

.nav-link-portal:hover {
    color: #5C7358;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item { margin-bottom: 8px; }
}
