.border{
border-radius: 20px !important;
border-bottom: 5px #FF2056 solid !important ;
}

.border-fekri{
border-radius: 20px !important;
border-bottom: 5px #7CCF00 solid !important ;
}
.border-gheseh{
border-radius: 20px !important;
border-bottom: 5px #7C86FF solid !important ;
}
.border-other{
border-radius: 20px !important;
border-bottom: 5px #FFB900 solid !important ;
}

/* flashlight-button.css */
.flashlight-floating-btn {
    position: fixed;
    top: 50px;
    left: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, #3114ef, #aca1f4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.flashlight-floating-btn:active {
    transform: scale(0.9);
}

.flashlight-floating-btn.on {
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.6),
        0 4px 15px rgba(255, 215, 0, 0.4);
}

.flashlight-floating-btn.on .flashlight-icon {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}


/* ✅ فقط در صفحات اندروید + افزونه content-widget نمایش داده شود */
body.platform-android.has-content-widget .flashlight-floating-btn {
    display: flex !important;
}

/* 🚫 در تمام حالت‌های دیگر مخفی باشد */
body:not(.platform-android),
body:not(.has-content-widget),
body:not(.platform-android).has-content-widget,
body.platform-android:not(.has-content-widget) {
    .flashlight-floating-btn {
        display: none !important;
    }
}