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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

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

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

/* Animation for sections */
section {
    transition: all 0.3s ease;
}

/* Custom styles for form inputs */
input, select {
    transition: all 0.2s ease;
}

input:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}