/**
 * SIDEBAR LIGHT MODE UNIFORMITY
 * Consistent hover styles for both admin and frontend sidebars
 */

/* Light Mode Sidebar Hover - Frontend Specific */
html[data-theme="light"] aside.sidebar .sidebar-item:hover,
html[data-theme="light"] #sidebar .sidebar-item:hover,
html[data-theme="light"] .sidebar .sidebar-item:hover,
html[data-theme="light"] .sidebar-item:hover {
    background-color: rgba(124, 58, 237, 0.15) !important;
    color: #6d28d9 !important;
    border-left: 3px solid rgba(124, 58, 237, 0.5) !important;
    transition: all 0.2s ease-in-out !important;
}

/* Light Mode Admin Sidebar Hover */
html[data-theme="light"] .admin-sidebar .sidebar-item:hover,
html[data-theme="light"] .main-sidebar .sidebar-item:hover,
html[data-theme="light"] .navigation .sidebar-item:hover {
    background-color: rgba(124, 58, 237, 0.15) !important;
    color: #6d28d9 !important;
    border-left: 3px solid rgba(124, 58, 237, 0.5) !important;
    transition: all 0.2s ease-in-out !important;
}

/* Light Mode Sidebar Hover - SVG Icons Frontend */
html[data-theme="light"] aside.sidebar .sidebar-item:hover svg,
html[data-theme="light"] #sidebar .sidebar-item:hover svg,
html[data-theme="light"] .sidebar .sidebar-item:hover svg,
html[data-theme="light"] .sidebar-item:hover svg {
    color: #6d28d9 !important;
    stroke: #6d28d9 !important;
}

/* Light Mode Sidebar Hover - SVG Icons Admin */
html[data-theme="light"] .admin-sidebar .sidebar-item:hover svg,
html[data-theme="light"] .main-sidebar .sidebar-item:hover svg,
html[data-theme="light"] .navigation .sidebar-item:hover svg {
    color: #6d28d9 !important;
    stroke: #6d28d9 !important;
}

/* Light Mode Sidebar Hover - Text Frontend */
html[data-theme="light"] aside.sidebar .sidebar-item:hover span,
html[data-theme="light"] #sidebar .sidebar-item:hover span,
html[data-theme="light"] .sidebar .sidebar-item:hover span,
html[data-theme="light"] .sidebar-item:hover span {
    color: #6d28d9 !important;
}

/* Light Mode Sidebar Hover - Text Admin */
html[data-theme="light"] .admin-sidebar .sidebar-item:hover span,
html[data-theme="light"] .main-sidebar .sidebar-item:hover span,
html[data-theme="light"] .navigation .sidebar-item:hover span {
    color: #6d28d9 !important;
}

/* Light Mode Dropdown Items Uniformity */
html[data-theme="light"] .dropdown-item:hover {
    background-color: rgba(124, 58, 237, 0.08) !important;
    color: #6d28d9 !important;
    transition: all 0.2s ease-in-out !important;
}

/* Light Mode Mobile Menu Uniformity */
html[data-theme="light"] .mobile-menu .sidebar-item:hover {
    background-color: rgba(124, 58, 237, 0.08) !important;
    color: #6d28d9 !important;
    transition: all 0.2s ease-in-out !important;
}