.user-icon-container {
    position: relative;
    display: inline-block;
}

.verified-tick {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 12px; /* Adjust the size */
    height: 12px;
    border-radius: 50%;
    background-color: white; /* Optional: Add a white background */
}

.menu-user-info .verified-tick{
    top: 0;
    right: 0px;
    width: 16px;
    height: 16px;
}

.user-icon-mobile{
    margin-top: 10px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.btn-subscribe-mobile{
    background: #323232;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    padding: 6px 16px;
    border: none;    
    margin-top: 8px;
    margin-right: 10px;
}
.btn-subscribe-mobile:hover{
    color: #fff;
    background-color: #252525;
}

/* Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    /* White background */
    color: black;
    /* Black text for contrast */
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu-overlay.open {
    right: 0;
}

/* Menu Header with User Info */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(233, 233, 233, 0.50);

    /* Grey border */
}

/* User Info inside the Header */
.menu-user-info {
    display: flex;
    align-items: center;
    /* Space between icon and text */
    gap: 10px;
    margin: 24px;
    padding: 18px;
    background: #c60000;
    border-radius: 5px;
}

.menu-user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.menu-user-info div#mobileUserName {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    /* Black text */
}

.menu-user-info div#mobileUserEmail {
    font-size: 13px;
    font-weight: 400;
    color: #D7D7D7;
}
/* Navigation Items */
.menu-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex; /* Flexbox for alignment */
    align-items: center;
    justify-content: space-between; /* Space between left content and arrow */
    padding: 15px 24px;
    text-decoration: none;
    color: black; /* Adjust text color as needed */
    border-bottom: 1px solid #eee; /* Separator between items */
    transition: background 0.3s ease;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

/* Left Section (Icon and Text) */
.menu-item-left {
    display: flex; /* Align icon and text */
    align-items: center;
    gap: 10px; /* Space between icon and text */
    color: #949494;
    font-size: 15px;
    font-weight: 500;
}

/* Icons on the Left */
.menu-item-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(
        circle,
        rgba(148, 148, 148, 0.05) 100%,
        transparent 50%
    );
    border-radius: 50%; /* Ensures it's a perfect circle */
    display: flex; /* Flexbox for centering content */
    justify-content: center; /* Horizontally center the icon */
    align-items: center; /* Vertically center the icon */
    overflow: hidden; /* Ensures the icon doesn't overflow the circle */
}

.menu-item-icon img {
    width: 20px; /* Adjust the size of the icon */
    height: 20px; /* Adjust the size of the icon */
    object-fit: contain; /* Ensures the icon maintains its aspect ratio */
}

/* Arrow Icon on the Right */
.menu-item-arrow {
    display: flex;
    align-items: center;
}

.menu-item-arrow img {
    width: 16px; /* Size of the arrow icon */
    height: 16px;
    object-fit: contain;
}

.close-menu {
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
    margin-right: -10px;
}