/* 
   EKEN 3D PORTAL - Custom UI Overrides
   v2.7.48
*/

/* --- 1. Vertical Alignment (Shift Up) --- */
/* User Request: "Genel Bakış menüsünü bi tık yukarı al" */
.fi-sidebar-nav {
    /* Reduced top padding from default (approx 2rem) to 0.75rem */
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* --- 2. Sidebar Spacing (Global Groups) --- */
.fi-sidebar-nav-groups {
    gap: 0.25rem !important;
}

/* --- 3. Sidebar Inner Items Spacing --- */
.fi-sidebar-group {
    gap: 0.125rem !important;
}

.fi-sidebar-item {
    margin-bottom: 0 !important;
}

.fi-sidebar-item-button {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
}

/* --- 4. Sidebar Appearance (Desktop Only) --- */
@media (min-width: 1024px) {
    .fi-sidebar {
        background-color: rgba(0, 0, 0, 0.015) !important;
        border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .dark .fi-sidebar {
        background-color: rgba(255, 255, 255, 0.015) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
}

/* --- 5. Sidebar Appearance (Mobile Fix) --- */
@media (max-width: 1023px) {
    .fi-sidebar {
        background-color: rgba(255, 255, 255, 1) !important;
    }

    .dark .fi-sidebar {
        background-color: rgba(9, 9, 11, 1) !important;
    }
}