/* style.css (Versi Final dengan Perbaikan Klik & Warna) */

.wp-block-create-block-tombol-download {
    text-align: center;
}

.tombol-download-custom {
    display: inline-block !important; /* DIPERBAIKI: Dipaksa jadi balok */
    width: 50%;
    background-color: #5cb85c;
    color: #ffffff !important;
    padding: 12px 24px !important; /* DIPERBAIKI: Dipaksa agar padding jadi area klik */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.tombol-download-custom:hover {
    background-color: #3498db;
    color: #ffffff !important;
}

/* Style tambahan untuk di dalam editor agar tidak bisa diklik */
.editor-styles-wrapper .tombol-download-custom {
    pointer-events: none;
}
.editor-styles-wrapper .tombol-download-custom span {
    pointer-events: all;
}