/* Import direktif dasar Tailwind */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* TAMBAHKAN STYLE KUSTOM DI BAWAH INI */
.lang-switcher .active {
    font-weight: 700;
    color: #4D2A86; /* amartha-purple */
}

.product-tab.active {
    color: #4D2A86; /* amartha-purple */
    font-weight: 700;
    border-left-color: #4D2A86; /* amartha-purple */
}

.product-tab {
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Style untuk menyembunyikan scrollbar horizontal */
.horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.horizontal-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


