﻿/* custom.css */

/* Light tema sidebar rengi */
html[data-coreui-theme='light'] .sidebar {
    --cui-sidebar-bg: #f5f5f5 !important; /* normalden bir ton koyu */
}

/* Dark tema sidebar rengi */
html[data-coreui-theme='dark'] .sidebar {
    --cui-sidebar-bg: #1e222e !important; /* normal darktan bir ton koyu */
}

/* Hover ve active durumları da uyumlu olsun */
html[data-coreui-theme='light'] .sidebar-nav .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

html[data-coreui-theme='dark'] .sidebar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
}
