/* ═══════════════════════════════════════════════════════════════════════
   email-pdf.css
   Styles for F13 Email PDF + Merge action buttons in Timeline section.
   All classes prefixed "epdf-". No effect when Feature.EmailPdfMergeV1
   is off (buttons don't render).
   ═══════════════════════════════════════════════════════════════════════ */

.epdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    margin-left: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #0d6efd;
    background: #f0f7ff;
    color: #0d6efd;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.12s ease, border-color 0.12s ease;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", inherit;
}

.epdf-btn:hover:not(:disabled) {
    background: #0d6efd;
    color: #fff;
}

.epdf-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.epdf-btn-merge {
    background: #e7f5ea;
    color: #198754;
    border-color: #198754;
}

.epdf-btn-merge:hover:not(:disabled) {
    background: #198754;
    color: #fff;
}

.epdf-inline-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    font-size: 12px;
}

.epdf-status-ok        { color: #198754; }
.epdf-status-err       { color: #dc3545; }
.epdf-status-progress  { color: #6c757d; }

.epdf-header-actions {
    display: inline-flex;
    gap: 8px;
    margin-left: 12px;
    align-items: center;
}

.epdf-link {
    color: #0d6efd;
    text-decoration: underline;
    font-size: 12px;
    margin-left: 6px;
}

.epdf-link:hover {
    color: #0b5ed7;
}
