/* 
=============================================
 Dosya Analisti (RAG) Studio - Özel Stilleri
=============================================
*/

/* Hızlı komut butonlarında scrollbar gizleme */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Yükleme ikonu dönme animasyon ince ayarı */
@keyframes spin {
    to { transform: rotate(360deg); }
}
.animate-spin {
    animation: spin 1s linear infinite;
}

/* Seçili klasör efekti */
.dossier-file-item.active {
    background-color: rgba(217, 163, 64, 0.1);
    border-color: #D9A340;
}
