/* ───────────────────────────────────────────────
   Secure PDF Lightbox — Stylesheet
─────────────────────────────────────────────── */

/* لایت‌باکس */
#spl-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.85);
    z-index: 9999999;
}

#spl-lightbox.active {
    display: flex;
}

/* کانتینر اصلی */
.spl-content {
    width: 95%;
    max-width: 1100px;
    height: 90vh;
    background: #222;
    border-radius: 10px;
    overflow: auto;
    position: relative;
}

/* نوار ابزار */
.spl-toolbar {
    background: #111;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* دکمه‌های داخل لایت‌باکس */
.spl-btn {
    padding: 8px 20px;
    background: #f5f5f5;
    color: #000;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.spl-btn:disabled {
    background: #666 !important;
    color: #ddd !important;
    cursor: default;
}

#spl-page-info {
    font-size: 15px;
    color: white;
}

.spl-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    background: #ff5d5d;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    border: none;
    padding: 0;
}

.spl-close:hover {
    background: #ff3c3c;
}

/* PDF Canvas */
#spl-pdf-canvas {
    display: block;
    margin: 25px auto;
    background: #fff;
    max-width: 95%;
    border-radius: 6px;
}

/* ───────────────────────────────────────────────
   دکمه ویجت المنتور
   (استایل‌های پایه — قابل override از پنل المنتور)
─────────────────────────────────────────────── */
.secure-pdf-button-wrapper {
    line-height: 1;
}

.secure-pdf-button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    background: #333333;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* آیکون سمت چپ — ترتیب flex */
.secure-pdf-button-link.icon-left .secure-pdf-btn-icon  { order: -1; }
.secure-pdf-button-link.icon-right .secure-pdf-btn-icon { order: 1;  }

/* اندازه پیش‌فرض آیکون */
.secure-pdf-btn-icon,
.secure-pdf-btn-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-flex;
    align-items: center;
}
