/*
Theme Name: PortalBanyumas
Theme URI: https://portalbanyumas.id
Author: Tim PortalBanyumas
Author URI: https://portalbanyumas.id
Description: Tema Portal Berita & Informasi Terkini Banyumas Raya berbasis Tailwind CSS dengan fitur Widget Cuaca API Gratis (Open-Meteo), Polling Interaktif, Rute Bus Trans Banyumas, dan Lapor Lur.
Version: 1.0.2
License: GNU General Public License v2 or later
Text Domain: portalbanyumas
*/

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #0070c0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #024282;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Slide / Fade Animation for Rotating Info Terkini */
.info-rotate-card {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.info-rotate-enter {
    opacity: 0;
    transform: translateY(6px);
}
.info-rotate-active {
    opacity: 1;
    transform: translateY(0);
}