/* Custom CSS for Facebook Video Downloader */

/* Smooth animations */
* {
    transition: all 0.2s ease-in-out;
}

/* Loading animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Focus styles */
input:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

/* Hover effects for links */
a {
    transition: color 0.2s ease;
}

/* Card hover effects */
.hover\:shadow-lg:hover {
    transform: translateY(-2px);
}

/* Print styles */
@media print {
    header, footer, .no-print {
        display: none !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
