/* ------------------------------------------------------------------ */
/* 🚀 CSS کامل لایت‌باکس اشتراک‌گذاری (با اصلاحات رنگ و اولویت !important) */
/* ------------------------------------------------------------------ */

/* ---- ساختار کلی لایت‌باکس (Overlay) ---- */
.custom-modal-overlay {
    display: none; /* پیش فرض پنهان */
    position: fixed;
    z-index: 9999; /* بالاترین لایه روی المنت‌های دیگر */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* پس‌زمینه نیمه‌شفاف */
}

/* ---- محتوای داخل لایت‌باکس (Modal Content) ---- */
.custom-modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* مرکز عمودی */
    padding: 25px;
    border-radius: 10px;
    width: 90%; 
    max-width: 450px;
    position: relative;
    text-align: right; /* راست چین کردن متن (برای فارسی) */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

/* ---- دکمه بستن (X) ---- */
.modal-close-btn {
    color: #aaa;
    float: left; /* قرارگیری سمت چپ برای زبان RTL (فارسی) */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}
.modal-close-btn:hover,
.modal-close-btn:focus {
    color: #333;
    text-decoration: none;
}

/* ------------------------------------------------------------------ */
/* ✨ دکمه اصلی اشتراک‌گذاری (با اعمال !important برای غلبه بر قوانین دیگر) */
/* ------------------------------------------------------------------ */

/* نگه‌دارنده دکمه برای وسط چین کردن */
.share-button-container {
    text-align: center; 
    margin: 20px 0; 
}

/* استایل خود دکمه */
.main-share-btn {
    padding: 8px 18px !important; /* اعمال padding و اندازه کوچک */
    font-size: 14px !important; 
    
    /* 🔴 مهم: اعمال رنگ با !important */
    background-color: #333333 !important; /* رنگ پس زمینه: مشکی تیره */
    color: white !important; /* رنگ نوشته و آیکون: سفید */
    
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex !important; 
    align-items: center;
    gap: 5px; 
    text-decoration: none !important; 
}

.main-share-btn:hover {
    background-color: #000000 !important; /* هاور: مشکی خالص */
}

/* ---- بخش کپی لینک داخل لایت‌باکس ---- */
.share-link-wrapper {
    display: flex;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

#share_link_input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    background-color: #f5f5f5;
    cursor: default;
    font-size: 14px;
    direction: ltr; 
    text-align: left; 
}

#copy-link-btn {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#copy-link-btn:hover {
    background-color: #0056b3;
}

/* ---- دکمه‌های اجتماعی داخل لایت‌باکس ---- */
.social-share-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.social-share-buttons a {
    flex-basis: 48%; 
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    color: white !important;
    font-size: 14px;
    transition: 0.3s;
}

.share-whatsapp {
    background-color: #25d366;
}

.share-telegram {
    background-color: #0088cc;
}

.social-share-buttons a i {
    margin-left: 5px; 
}

/* وضعیت کپی لینک */
.copy-link-status {
    text-align: center;
    color: green;
    font-weight: bold;
    margin-top: 10px;
    display: none;
}