﻿.navbar-nav .nav-link {
    white-space: normal; /* Allows text to wrap to a second line */
}

.navbar-brand {
    margin-right: 0;
}

.portalnav-icon {
    margin-right: 0 !important;
    padding-left: 40px;
}

.portalnav__title__text {
    color: #262C34 !important;
    font-family: "Inter";
    font-weight: 800;
    font-size: medium;
    line-height: 1.0;
    letter-spacing: -0.01em;
    padding-right: 40px;
}
/* Icon Buttons (Bell & Grid) */
.portalnav__icon-btn {
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portalnav-avatar {
    cursor: pointer;
    transition: opacity 0.2s;
}

    .portalnav-avatar:hover {
        opacity: 0.8;
    }

    /* Align avatar size and remove the default Bootstrap arrow */
    .portalnav-avatar.dropdown-toggle::after {
        display: none;
    }

.portalnav-avatar {
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    width: 34px;
}

    /* Match the hover style of your other navbar buttons */
    .portalnav-avatar:hover {
        background-color: rgba(0, 0, 0, 0.05);
        transform: translateY(-1px);
    }

    /* Remove the Bootstrap caret to keep the circle clean */
    .portalnav-avatar.dropdown-toggle::after {
        display: none;
    }
