/* Navigation bar user profile picture */
.user-image-custom {
    width: 32px;
    height: 32px;
    /* Set height equal to width to maintain a square shape */
    border-radius: 50%;
    /* Make the image circular */
    object-fit: cover;
    /* Ensures the image fits within the defined area */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: add subtle shadow */
}