/* الحاوية الرئيسية */
#ua-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* توزيع الأزرار المتبقية 2 فوق 2 */
#ua-options-menu {
    display: grid;
    grid-template-columns: 50px 50px;
    gap: 12px;
    margin-bottom: 15px;
}

/* تصميم الأزرار */
.ua-access-btn {
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    color: #0078D7 !important;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 1px solid #eee;
}

/* زر الاستعادة (أيقونة فقط) */
#ua-reset-btn {
    background: #e74c3c !important;
    color: white !important;
    border: none;
}

/* الزر الرئيسي الأزرق */
#ua-main-trigger {
    width: 60px;
    height: 60px;
    background: #0078D7;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}