/**
 * Doküman Yönetim Sistemi - Özel Stiller
 * Bu dosyaya Tailwind CSS ile yapılamayan özel stilleri ekleyebilirsiniz
 */

/* Sidebar Navigation Styles */
.nav-item {
    transition: all 0.2s ease-in-out;
}

.nav-item.active {
    background-color: rgba(55, 65, 81, 1);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Smooth transitions */
* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Mobile Sidebar Overlay */
#overlay {
    transition: opacity 0.3s ease-in-out;
}

/* Card Hover Effects */
.bg-white.rounded-xl.shadow-md:hover {
    transform: translateY(-2px);
}

/* Form Input Focus Styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(13, 59, 92, 0.1);
}

/* Custom Select Multiple Styles */
select[multiple] {
    background-image: none;
}

select[multiple] option:checked {
    background: #0D3B5C linear-gradient(0deg, #0D3B5C 0%, #0D3B5C 100%);
    color: white;
}

