.admin-icon {
    position: relative;
    font-size: 22px;
    opacity: 0.6;
    transition: 0.3s;
    margin-right:15px;
    color: #000;
    
}

.admin-icon svg {
    transition: 0.3s;
}

.admin-icon:hover svg {
    transform: scale(1.2);
    fill: #1e293b;
}
/* hover icon */
.admin-icon:hover {
    opacity: 1;
    transform: rotate(90deg);
    color: #2563eb;
}

/* tooltip */
.admin-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    right: 50%;
    transform: translateX(50%);
    background: #1e293b;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

/* show tooltip */
.admin-icon:hover::after {
    opacity: 1;
    bottom: -20px;
}

.u-sidenav-overflow{
    position: relative; /* ðŸ”¥ Ù…Ù‡Ù… */
}

.u-sidenav-overflow{
    position: relative; /* 🔥 مهم */
}

.mobile-login-bottom{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

/* 👇 هذا التغيير */
.mobile-login-bottom a{
    color: #ffffff; /* أبيض */
    font-size: 26px;
    text-decoration: none;
    background: none;   /* ❌ حذف الخلفية */
    box-shadow: none;   /* ❌ حذف الظل */
    border: none;
}
.mobile-login-bottom a:hover{
    opacity: 0.7;
}