/* ======= FORM CHECKOUT ======= */
.pob-checkout-wrapper, .pob-success-wrapper {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.pob-form-group {
    margin-bottom: 15px;
}
.pob-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.pob-form-group input, 
.pob-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.pob-btn-submit {
    background: #0073aa;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.pob-btn-submit:hover { background: #005f8d; }

/* ======= INSTRUKSI PEMBAYARAN ======= */
.pob-instruction-box {
    background: #f8f9fa;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
}
.pob-instruction-box ul {
    list-style: none;
    padding-left: 0;
}
.pob-instruction-box li {
    margin: 5px 0;
}
.pob-btn-copy {
    padding: 3px 8px;
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer;
}

/* ======= UPLOAD BUKTI TRANSFER ======= */
.pob-btn-upload {
    background: #28a745;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.pob-btn-upload:hover { background: #218838; }
.pob-error { color: red; font-weight: bold; }

/* ======= LABEL GRATIS / PREMIUM ======= */
.pob-thumb-wrapper {
    position: relative;
    display: inline-block;
}
.pob-label {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.pob-label-free { background: #28a745; }
.pob-label-premium { background: #dc3545; }

/* ======= TOMBOL CHECKOUT DI POST ======= */
.pob-checkout-box {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    text-align: center;
}
.pob-btn-checkout {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}
.pob-btn-checkout:hover { background: #005177; }