/**
 * WM School Photos – Secure download button and modal styles.
 *
 * Extracted from:
 * - Student Order Forms.css (download button section)
 * - Teacher Download.php (inline modal styles)
 */

/* ── Download button ──────────────────────────────────────────────────────── */
.secure-download-btn {
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    font-size: 12pt;
    font-weight: 500;
    background: #3d3a39;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

@media (max-width: 720px) {
    .secure-download-btn {
        border-radius: 5px;
        padding: 0.4rem 0.5rem;
        font-size: 10pt;
        font-weight: 400;
    }
}

.secure-download-btn:hover {
    background: #8C8C8C;
    color: #fff;
}

/* ── Modal backdrop ───────────────────────────────────────────────────────── */
.wm-sd-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* ── Modal dialog ─────────────────────────────────────────────────────────── */
.wm-sd-modal {
    background: #fff;
    color: #111;
    border-radius: 12px;
    max-width: 420px;
    width: 92%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 20px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wm-sd-modal h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.wm-sd-field {
    display: flex;
    gap: 10px;
    margin: 12px 0 0;
}

.wm-sd-field input[type=password] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
}

.wm-sd-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
}

.wm-sd-btn {
    padding: 10px 14px;
    border: 0;
    cursor: pointer;
    border-radius: 8px;
}

.wm-sd-btn.primary {
    background: #111;
    color: #fff;
}

.wm-sd-close {
    color: #3d3a39 !important;
    position: absolute !important;
    top: 8px !important;
    right: 10px !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    padding: 4px 8px !important;
    margin: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: auto !important;
    height: auto !important;
    cursor: pointer;
    box-shadow: none !important;
}

/* ── Bulk download checkboxes (inside modal) ─────────────────────────────── */
.wm-sd-bulk-checkboxes {
    margin: 0 0 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.wm-sd-bulk-intro {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
}

.wm-sd-bulk-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.wm-sd-bulk-row input[type="checkbox"] {
    margin: 0 !important;
    flex-shrink: 0;
    width: 16px !important;
    height: 16px !important;
}
