@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Custom animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #374151;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Focus styles */
button:focus, select:focus, textarea:focus {
    outline: 2px solid #3a5a40;
    outline-offset: 2px;
}

.dark button:focus, .dark select:focus, .dark textarea:focus {
    outline-color: #588157;
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom button hover effects */
.btn-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Text selection */
::selection {
    background-color: #3a5a40;
    color: white;
}

.dark ::selection {
    background-color: #588157;
    color: white;
}