/* Base styles */
body {
    line-height: 1.6;
}

/* Smooth transitions */
a, button, .transition-all {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #7dd3fc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0ea5e9;
}

/* Focus states for better accessibility */
button:focus, a:focus, input:focus, textarea:focus {
    outline: 2px solid #7dd3fc;
    outline-offset: 2px;
}

/* Animation for cards hover */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}