/* Tailwind sonrası ek stiller — sadece custom davranışlar */

html { scroll-behavior: smooth; }

body { -webkit-font-smoothing: antialiased; }

/* Yumuşak geçiş — tab panelleri için */
.tab-panel {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* details/summary üzerindeki default ok işaretini kaldır */
summary::-webkit-details-marker { display: none; }
summary::marker { content: ""; }

/* Scrollbar — modern görünüm */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Mobilde dropdown menüler hover yerine click ile açılsın */
@media (max-width: 1023px) {
    .group:focus-within > div { display: block; }
}

/* Print görünümü */
@media print {
    header, footer, .fixed { display: none !important; }
}
