/* TNG Payment System Styles
 * Button style matches live site masternew.css (.btn.btn-default)
 * Wrapper class .cbtnp matches live sdots/payment-shortcode.php output
 */

/* ── Payment button wrapper ─────────────────────────────── */
.cbtnp {
    margin-top: 20px;
}

/* ── Base button — matches live .btn.btn-default exactly ── */
.btn.btn-default {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 3px;
    background: #ef662f;
    color: #fff;
    border: solid 1px #ef662f;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn.btn-default:hover,
.btn.btn-default:active {
    background: transparent;
    border-color: #ef662f;
    color: #ef662f;
    text-decoration: none;
}

/* ── Calendar / iCal link ───────────────────────────────── */
.btn-calendar {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-calendar:hover {
    background: #218838;
    color: #fff;
    text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .cbtnp {
        display: flex;
        flex-direction: column;
    }

    .cbtnp .btn {
        width: 100%;
        text-align: center;
    }
}
