/**
 * Theme Name:     RetroTube Child
 * Author:         Bokep64
 * Template:       retrotube
 * Text Domain:	   retrotube-child
 * Description:    Streaming Bokep Indo Terbaru Update Tiap Hari
 * Theme URI:      https://bokep64.online/
 * Author URI:     https://bokep64.online/
 * Version:        1.1
 */
/* (venus) */
.video-source-venus { /* Nama kelas CSS yang diubah */
    margin-top: 15px;
    text-align: center;
    display: flex; /* Menggunakan flexbox untuk penataan tombol */
    justify-content: center; /* Memusatkan tombol */
    flex-wrap: wrap; /* Memungkinkan tombol untuk wrap ke baris berikutnya jika terlalu banyak */
    gap: 10px; /* Jarak antar tombol */
}

.video-source-venus button { /* Nama kelas CSS yang diubah */
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap; /* Mencegah teks tombol pecah baris */
}

.video-source-venus button:hover { /* Nama kelas CSS yang diubah */
    background-color: #555;
    border-color: #777;
}

.video-source-venus button.active { /* Nama kelas CSS yang diubah */
    background-color: #e74c3c; /* Sesuaikan dengan warna utama RetroTube */
    border-color: #e74c3c;
    font-weight: bold;
}

/* Pastikan iframe mengisi lebar container setelah diganti */
.video-player iframe,
.video-player video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9; /* Menjaga rasio aspek 16:9 */
    display: block; /* Menghilangkan spasi ekstra di bawah iframe */
}