/* Çözüm Car Service - Custom CSS
   Tailwind CSS ile birlikte çalışan özel bileşenler ve animasyonlar.
   Sürüm: 1.0.0
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

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

::-webkit-scrollbar-track {
    background: #0b0e14; 
}

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

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

/* Glassmorphism Utilities */
.glass-effect {
    background: rgba(30, 35, 51, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Smooth Image Loading */
img {
    transition: opacity 0.3s ease-in-out;
}
img[loading] {
    opacity: 0;
}
img.loaded {
    opacity: 1;
}
