body.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}


/* Style the modal content */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 1080px;
    text-align: center;
    z-index: 2;
    max-height: 85vh;
    /* Ketinggian maksimum modal (80% dari tinggi viewport) */
    overflow-y: auto;

    /* Jarak antara garis bawah dan isi modal */
    /* Set the z-index higher than the modal background */
}

/* Style the close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    font-size: 24px;
    /* Ukuran font judul */
    margin-bottom: 10px;
    /* Jarak antara judul dan subjudul */
}

.modal-subtitle {
    font-size: 18px;
    /* Ukuran font subjudul */
    margin-bottom: 20px;
    /* Jarak antara subjudul dan isi modal */
}

.modal-image {
    width: 100%;
    /* Lebar gambar mengikuti lebar modal */
    max-width: 80%;
    /* Pastikan tidak melebihi lebar aslinya */
    margin: auto;
    /* Berikan margin atas dan bawah untuk estetika */
    height: auto;
    border-radius: 20px;
    /* Tambahkan border radius pada gambar */
}

.modal-divider {
    width: 80%;
    /* Lebar garis horizontal */
    margin: 20px auto;
    /* Center the horizontal rule and add space above and below */
    border: none;
    /* Remove default border styling */
    border-top: 1px solid #ddd;
    /* Garis horizontal dengan warna sesuai preferensi */
}

.modal-columns {
    display: flex;
    /* Gunakan model kotak fleksibel untuk layout kolom */
    justify-content: space-between;
    /* Beri ruang antara kedua kolom */
}

.modal-column {
    width: 65%;
    /* border: groove; */
    /* Lebar kolom kiri */
}

.modal-column:last-child {
    width: 30%;
    border: groove;
    border-width: thick;
    border-radius: 20px;
    height: 100%;

    /* Lebar kolom kanan */
}


.modal-column h3 {
    width: 100%;
    /* Header mengambil lebar penuh */
}

.modal-column div {
    width: 100%;
    /* Div (tempat teks) mengambil lebar penuh */
    word-wrap: break-word;
    /* Teks di-wrap jika terlalu panjang */
}


.modal-text {
    flex: 1;
    text-align: left;
    /* Elemen teks memanfaatkan sisa ruang yang ada */
    padding-left: 20px;
    /* Berikan padding kiri untuk memberi jarak antara gambar dan teks */
}

.modal-text h3 {
    font-size: 18px;
    padding-bottom: 10px;
}

.modal-button {
    margin-top: 20px;
    /* Jarak atas tombol dari isi modal */
    padding: 10px 20px;
    /* Padding tombol */
    font-size: 16px;
    /* Ukuran font tombol */
    background-color: #4CAF50;
    /* Warna latar belakang tombol */
    color: white;
    /* Warna teks tombol */
    border: none;
    /* Hilangkan border tombol */
    border-radius: 5px;
    /* Tambahkan border radius pada tombol */
    cursor: pointer;
}

a[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.back {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

body.modal-open .modal-content {
    overflow-y: auto;
}

/* Style untuk smartphone (lebar layar <= 600px) */
@media only screen and (max-width: 600px) {
    .modal-columns {
        flex-direction: column-reverse;
        /* Mengubah urutan kolom menjadi terbalik */
    }

    .modal-content {
        width: 90%;
        /* Atur lebar modal sesuai kebutuhan */
        margin: auto;
        /* Tengahkan modal */
    }

    .modal-video iframe {
        width: 100%;
        /* Video mengambil lebar penuh */
    }


    .modal-column {
        width: 100%;
        /* Kolom mengambil lebar penuh */
        padding: 0 10px;
        /* Tambahkan ruang di sisi */
        margin-bottom: 10px;
    }

    .modal-column:last-child {
        width: 100%;
        border: groove;
        border-width: thick;
        border-radius: 20px;
        height: 100%;

        /* Lebar kolom kanan */
    }

    .modal-title {
        font-size: 15px;
        /* Ukuran font judul */
        margin-bottom: 10px;
        /* Jarak antara judul dan subjudul */
    }

    .modal-subtitle {
        font-size: 8px;
        /* Ukuran font subjudul */
        margin-bottom: 20px;
        /* Jarak antara subjudul dan isi modal */
    }
}