/* WP CSV Exporter – Frontend Styles */

.csv-exp-wrap {
    font-family: inherit;
    margin: 1.5em 0;
}

/* ---- Ações ---- */
.csv-exp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.csv-exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #1e40af;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .15s, transform .1s;
    line-height: 1;
}

.csv-exp-btn:hover {
    background: #1d4ed8;
}

.csv-exp-btn:active {
    transform: scale(.97);
}

.csv-exp-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.csv-exp-msg {
    font-size: .85rem;
    color: #374151;
}

.csv-exp-msg.error {
    color: #dc2626;
}
