/* Remove spinners from number inputs */
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.no-spinners {
    -moz-appearance: textfield;
}

/* Sidebar Toggle Styles */
.sidebar-toggle {
    background-color: #16182b !important;
    height: 0px !important;
    border-radius: 0px !important;
}

/* Option 1: Fixed position - stays in same place while scrolling */
.sidebar-toggle-fixed {
    position: fixed;
    top: 5px;
    left: 260px;
    z-index: 999999;
    transition: left 0.3s ease;
}

/* When sidebar is collapsed, move toggle to left edge */
.sidebar.collapsed ~ .main .sidebar-toggle-fixed {
    left: 0px;
}

/* Option 2: Sticky position - scrolls until reaching top, then sticks */
.sidebar-toggle-sticky {
    position: sticky;
    top: 0;
    z-index: 999999;
}

/* Option 3: Parallax effect - moves slower than page scroll */
.sidebar-toggle-parallax {
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    z-index: 999999;
}

/* SVG icon styles */
.sidebar-toggle-icon {
    height: 1.5rem;
    z-index: 999999;
    background-color: #16182b;
    border-radius: 0% 50% 50% 0% !important;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
} 