/* Custom styles that can't be done with Tailwind */
@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: #fff1f2;
}

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

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

/* Range input styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #f43f5e;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #f43f5e;
    border-radius: 50%;
    cursor: pointer;
}

/* Animation for buttons */
button {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.98);
}

/* Custom shadow for cards */
.shadow-rose {
    box-shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.1), 0 2px 4px -1px rgba(244, 63, 94, 0.06);
}