/* WP Doc Exporter — Frontend Button Styles */

.wpde-export-wrap {
    margin: 1.2em 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.wpde-export-wrap[style*="center"] { justify-content: center; }
.wpde-export-wrap[style*="right"]  { justify-content: flex-end; }

/* Buttons */
.wpde-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.12s;
    letter-spacing: 0.02em;
}
.wpde-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.wpde-btn--pdf {
    background: #C00000;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(192,0,0,0.25);
}
.wpde-btn--docx {
    background: #1F4E79;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(31,78,121,0.22);
}

/* Link style */
.wpde-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}
.wpde-link--pdf  { color: #C00000; }
.wpde-link--docx { color: #1F4E79; }
.wpde-link:hover { opacity: 0.75; }
