/*
Theme Name: Finnbedre
Author: Andre
Description: Custom, high-converting WordPress theme for finnbedre.no. Professional, store-style affiliate comparison platform.
Version: 1.0.0
Text Domain: finnbedre
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Tailwind slate-50 */
    color: #0f172a; /* Tailwind slate-900 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom CSS for hiding/showing modal and other non-Tailwind specific overrides */
.modal {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active {
    display: flex;
    opacity: 1;
}

/* Responsive Table */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
