@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Overlay for mobile */
#sidebarOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

@media (min-width: 992px) {
    #sidebarOverlay {
        display: none !important;
    }
}

/* Sidebar Navigation */
#sidebar {
    min-width: 250px;
    max-width: 250px;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

@media (max-width: 991.98px) {
    #sidebar {
        margin-left: -250px;
        position: fixed;
        z-index: 1050;
        height: 100vh;
    }
    #sidebar.active {
        margin-left: 0;
    }
}

.hover-bg-light:hover {
    background-color: #f1f3f5;
}

.bg-primary {
    background-color: #0d6efd !important;
}

.custom-active.text-white {
    color: #fff !important;
}

/* Utils */
.cursor-pointer {
    cursor: pointer;
}

/* POS Screen */
.producto-card {
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
    border-color: #dee2e6 !important;
}

.producto-card:hover {
    transform: scale(1.02);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    border-color: #0d6efd !important;
}

/* Subsidio Switch Size */
.form-switch-lg .form-check-input {
    width: 3rem;
    height: 1.5rem;
}

.form-switch-lg .form-check-input:checked {
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.text-orange {
    color: #fd7e14 !important;
}

.bg-orange {
    background-color: #fd7e14 !important;
}
