/* Avatar Image Fix - Prevent overflow beyond circular boundary */

/* All avatar images across the site */
.custom-dropdown-toggle img,
.navbar-user img,
.top-navbar .navbar-user img,
.user-avatar img,
img[class*="avatar"] {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: block !important;
}

/* Ensure parent containers also have overflow hidden */
.custom-dropdown-toggle,
.navbar-user,
.user-avatar {
    overflow: hidden !important;
    border-radius: 50% !important;
}

/* Mobile responsive */
@media (max-width: 767.98px) {

    .custom-dropdown-toggle img,
    .navbar-user img {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 575.98px) {

    .custom-dropdown-toggle img,
    .navbar-user img {
        width: 35px !important;
        height: 35px !important;
    }
}