@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation for buttons */
.button-scale {
    transition: transform 0.2s ease;
}

.button-scale:hover {
    transform: scale(1.02);
}
/* Compatibility warning styles */
.compatibility-warning {
    background: #ffecb3;
    border-bottom: 1px solid #ffc107;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.warning-content {
    max-width: 800px;
    margin: 0 auto;
}

.warning-content h3 {
    margin: 0 0 0.5rem 0;
    color: #ff6f00;
}

.warning-content ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: inline-block;
    text-align: left;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in {
    animation: fadeIn 0.3s ease-in;
}