/* Custom Sidebar - Mouse Logo Background Only */

/* Mouse logo background - positioned to be cropped at center of SVG */
.fi-sidebar::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -250px;
    width: 500px;
    height: 500px;
    background-image: url('/mouse-svgrepo-com.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 1200px) {
    .fi-sidebar::before {
        left: -200px;
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .fi-sidebar::before {
        left: -175px;
        width: 350px;
        height: 350px;
    }
}

/* Ensure logo stays in position during browser zoom */
@media (min-resolution: 1.5dppx) {
    .fi-sidebar::before {
        background-size: contain;
    }
}

/* Dark mode - make SVG more visible */
@media (prefers-color-scheme: dark) {
    .fi-sidebar::before {
        opacity: 0.2;
    }
}

/* Filament dark mode specific */
.dark .fi-sidebar::before {
    opacity: 0.25;
}

/* High contrast mode for better visibility */
@media (prefers-contrast: high) {
    .fi-sidebar::before {
        opacity: 0.3;
    }
}
