/* Custom styles for TopUp Store - Complementing Tailwind CSS */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 115, 22, 0.7);
}

/* FAQ Accordion */
#faqAccordion details > summary::-webkit-details-marker {
    display: none;
}

#faqAccordion details > summary {
    list-style: none;
}

#faqAccordion details > summary span[aria-hidden="true"] {
    transition: transform 0.2s ease;
}

#faqAccordion details[open] > summary span[aria-hidden="true"] {
    transform: rotate(180deg);
}
