/* Reserve button + sponsored badge inside each program row */
.epg-reserve-btn {
    margin-top: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: #2e7d32;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.epg-reserve-btn:hover { background-color: #256428; }

.epg-sponsor-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #6c757d;
    border-radius: 4px;
}

/* Modal overlay */
.epg-sponsor-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
}

.epg-sponsor-modal {
    position: relative;
    background: #fff;
    border-radius: 6px;
    max-width: 420px;
    width: 100%;
    padding: 28px 24px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.epg-sponsor-modal h3 { margin: 0 0 6px; color: #222; }
.epg-sponsor-program-label { font-weight: bold; color: #d9534f; margin: 0 0 4px; }
.epg-sponsor-price-label { color: #555; margin: 0 0 16px; }

.epg-sponsor-modal-close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}
.epg-sponsor-modal-close:hover { color: #333; }

#epg-sponsor-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: bold;
    color: #444;
}
#epg-sponsor-form input {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.epg-sponsor-pay-btn {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #d9534f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.epg-sponsor-pay-btn:disabled { opacity: 0.6; cursor: default; }
.epg-sponsor-pay-btn:hover:not(:disabled) { background-color: #c9302c; }

.epg-sponsor-error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c6cb;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
}
