/* CSS untuk modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 90%;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.close:hover {
    color: red;
}

/* CSS untuk mengatur background input file menjadi hitam */
.form-control[type="file"] {
    background-color: #0d0d0d;
    color: white; /* Atur warna teks menjadi putih atau sesuai kebutuhan Anda */
    border: 1px solid #ccc; /* Atur garis tepi sesuai kebutuhan Anda */
}

/* Gaya umum untuk radio button */
.ticket-label input[type="radio"] {
    margin-right: 10px; /* Jarak antara radio button dan label */
    vertical-align: middle; /* Posisi vertical middle */
}

/* Gaya untuk label radio button */
.ticket-label {
    display: block; /* Membuat label menjadi blok agar mudah diklik */
    margin-bottom: 10px; /* Jarak antara setiap label */
    font-size: 16px; /* Ukuran font */
    color: #ffffff; /* Warna teks */
}

/* Gaya saat radio button dipilih */
.ticket-label input[type="radio"]:checked + span {
    font-weight: bold; /* Tebalkan teks saat radio button dipilih */
    color: #e74c3c; /* Ubah warna teks saat radio button dipilih */
}

/* Gaya harga tiket */
.ticket-price {
    font-weight: bold; /* Tebalkan harga tiket */
    color: #3498db; /* Warna harga tiket */
}

/* Gaya tombol "Buy Ticket" */
.btn-custom {
    background-color: #7A04BE; /* Warna latar belakang */
    color: #fff; /* Warna teks */
    padding: 10px 20px; /* Padding tombol */
    border: none; /* Hapus border */
    border-radius: 5px; /* Bentuk sudut tombol */
    text-decoration: none; /* Hapus garis bawah teks */
    display: inline-block; /* Membuat tombol menjadi inline-block */
    transition: background-color 0.3s ease; /* Transisi warna latar belakang saat hover */
}

.btn-custom:hover {
    background-color: #7A04BE; /* Warna latar belakang saat hover */
}

/* Gaya modal */
.modal {
    display: none; /* Sembunyikan modal secara default */
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Latar belakang semi-transparan */
    text-align: center;
}

/* Gaya tombol close */
.close {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

/* Gaya konten modal */
.modal-content {
    width: auto;
    max-height: 95%;
    margin: 0 auto;
    display: block;
}

/* Gaya deskripsi gambar */
#caption {
    color: #fff;
    margin-top: 10px;
}
