/**
 * Tickets TPV – WordPress plugin styles
 */

/* ── Container ── */
.tickets-tpv-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.tickets-tpv-container iframe {
    display: block;
    width: 100%;
    border: none;
    transition: height 0.2s ease;
}

/* ── Status messages (shown after Redsys return) ── */
.tickets-tpv-status {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.tickets-tpv-status--ok {
    background: #d1e7dd;
    border: 1px solid #badbcc;
    color: #0f5132;
}

.tickets-tpv-status--ko {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .tickets-tpv-container {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
}
