/* 
 * File CSS Khusus untuk Kustomisasi Tampilan Pusat Panel SMM 
 * Anda bisa meletakkan semua kode CSS di sini tanpa perlu membuat tag <style> di setiap file PHP.
 */

/* Contoh untuk Dokumentasi API */
.example-btn {
    background-color: #5f6f82; /* abu kebiruan */
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px; /* pill shape */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.example-btn:hover {
    background-color: #4f5e6f;
}

.example-btn:active {
    transform: scale(0.97);
}

/* Tambahkan style untuk halaman lainnya di bawah ini... */

/* --- Style Global QRIS --- */
.background-qr {
    background-image: url("https://pusatpanelsmm.com/assets/images/pusatsmm/qris_template.png");
    background-repeat: no-repeat;
    background-position: cover;
    background-size: 100% auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
    height: 400px;
}

.qr-image {
    margin: 0px auto;
    padding: 0px;
    width: 100%;
    max-width: 250px;
}

.name-qr {
    font-size: 1.1em;
}

.bottom-info-qr {
    margin-left: 40px;
    font-size: 0.7em;
}

.id-qr {
    font-size: 0.8em;
}

@media only screen and (max-width: 768px) {
    .background-qr {
        background-size: 100% auto;
        padding-top: 25px;
        /* padding-bottom:10px; */
        height: 300px;
    }

    .name-qr {
        font-size: 0.8em;
    }

    .qr-image {
        width: 100%;
        max-width: 150px;
        height: auto;
    }

    .bottom-info-qr {
        text-align: center;
        margin-left: 0px;
        font-size: 8px;
    }

    .id-qr {
        font-size: 0.4em;
    }
}
