/* Mencegah FlipDown turun ke baris baru di layar kecil */
#flipdown {
    white-space: nowrap !important;
    width: max-content !important;
    margin: 0 auto;
}

#flipdown .rotor-group {
    float: none !important;
    display: inline-block !important;
}

@media (max-width: 550px) {
    #flipdown {
        transform: scale(0.9);
        transform-origin: top center;
    }
}

@media (max-width: 450px) {
    #flipdown {
        transform: scale(0.8);
    }
}

@media (max-width: 380px) {
    #flipdown {
        transform: scale(0.65);
    }
}
