/* /Components/Breadcums.razor.rz.scp.css */

.breadcrumb[b-saa3htwbq3] {
    margin-bottom: 20px;
    color: #888;
    font-size: 13px;
}

.breadcrumb-separator[b-saa3htwbq3] {
    margin: 0 8px;
}

.active[b-saa3htwbq3] {
    font-weight: bold;
}

/* /Components/GuardarCancelarBoton.razor.rz.scp.css */
/* Wrapper */
.buttons-panel[b-37kot1e6b1] {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Base button style */
.btn-base[b-37kot1e6b1] {
    width: 100%;
    max-width: 25%;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: #ffffff;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);
}

    /* Hover + active animations */
    .btn-base:hover:not(:disabled)[b-37kot1e6b1] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 6px 16px rgba(0, 0, 0, 0.06);
    }

    .btn-base:active:not(:disabled)[b-37kot1e6b1] {
        transform: scale(0.98);
    }

    /* Disabled state */
    .btn-base:disabled[b-37kot1e6b1] {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
    }

/* Cancel Button */
.btn-cancel[b-37kot1e6b1] {
    background: #f9fafb;
    color: #2563eb;
    border: 1px solid #cbd5e1;
}

    .btn-cancel:hover:not(:disabled)[b-37kot1e6b1] {
        background: #f3f4f6;
    }

/* Save Button */
.btn-save[b-37kot1e6b1] {
    background: #f59e0b;
    color: #ffffff;
}

    .btn-save:hover:not(:disabled)[b-37kot1e6b1] {
        background: #fbbf24;
    }

/* Mobile adjusts (full width buttons) */
@media (max-width: 768px) {
    .btn-base[b-37kot1e6b1] {
        max-width: 100%;
    }
}
/* /Components/Main Layout/Sidebar.razor.rz.scp.css */
/* ========================================================= */
/* LAYOUT: SIDEBAR + MAIN                                    */
/* ========================================================= */

.sidebar[b-bt4s1ezk51] {
    width: clamp(15rem, 100%, 26rem);
    background-color: var(--secondary-blue);
    color: white;
    height: 100vh;
    /*position: fixed;*/ /* Fixed position */
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow: hidden; /* Hide scrollbar on parent */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
    transition: all 0.3s ease;
    /* Firefox needs this for smooth transitions */
    will-change: transform;
}

    .sidebar.collapsed[b-bt4s1ezk51] {
        transform: translateX(-100%);
        width: 0;
    }

/* ========================================================= */
/* MAIN CONTENT                                              */
/* ========================================================= */

.main-content[b-bt4s1ezk51] {
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

    .main-content.collapsed[b-bt4s1ezk51] {
        margin-left: 0;
    }

/* ========================================================= */
/* SIDEBAR STRUCTURE                                         */
/* ========================================================= */

/* Logo */
.sidebar .logo[b-bt4s1ezk51] {
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .sidebar .logo img[b-bt4s1ezk51] {
        max-width: 180px;
        width: 100%;
        height: auto;
    }

/* Scrollable content */
.sidebar-content[b-bt4s1ezk51] {
    flex: 1;
    padding: 15px 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

/* Footer */
.sidebar-footer[b-bt4s1ezk51] {
    height: 4rem;
    padding: 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

/* ========================================================= */
/* MENU                                                      */
/* ========================================================= */

[b-bt4s1ezk51] .menu {
    list-style: none;
    margin: 0;
    padding-left: 10px;
}

    [b-bt4s1ezk51] .menu > li {
        margin-bottom: 5px;
    }

        [b-bt4s1ezk51] .menu a.nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            border-radius: 4px;
            color: #fff !important;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

            [b-bt4s1ezk51] .menu a.nav-link:hover {
                background-color: #1d2e8a;
            }

            [b-bt4s1ezk51] .menu a.nav-link.active {
                background-color: #2a2a2a;
                font-weight: 600;
                border-left: 4px solid #FFD700;
            }

    [b-bt4s1ezk51] .menu .fa-solid {
        width: 20px;
        text-align: center;
    }


/* ========================================================= */
/* SUBMENU                                                   */
/* ========================================================= */

[b-bt4s1ezk51] .has-submenu {
    display: block;
}

    [b-bt4s1ezk51] .has-submenu .submenu {
        list-style: none;
        margin: 5px 0 0 10px;
        padding-left: 15px;
        display: none;
    }

        [b-bt4s1ezk51] .has-submenu .submenu.open {
            display: block;
        }

        [b-bt4s1ezk51] .has-submenu .submenu li {
            margin-bottom: 3px;
        }

        [b-bt4s1ezk51] .has-submenu .submenu a {
            padding: 8px 15px;
            font-size: 0.9rem;
            color: white;
        }

    [b-bt4s1ezk51] .has-submenu i.fa-caret-up,
    [b-bt4s1ezk51] .has-submenu i.fa-caret-down {
        margin-left: auto;
        transition: transform 0.2s ease;
    }

    [b-bt4s1ezk51] .has-submenu i.fa-caret-up {
        transform: rotate(180deg);
    }


/* ========================================================= */
/* TOGGLE BUTTON                                             */
/* ========================================================= */

.toggle-sidebar-btn[b-bt4s1ezk51] {
    background: #0a1e65;
    color: #fff;
    border: none;
    padding: 10px;
    margin-right: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .toggle-sidebar-btn:hover[b-bt4s1ezk51] {
        background: #1d2e8a;
    }

/* ========================================================= */
/* LOGOUT                                                    */
/* ========================================================= */

.logout-link[b-bt4s1ezk51] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .logout-link:hover[b-bt4s1ezk51] {
        background-color: rgba(255,255,255,0.1);
    }

/* ========================================================= */
/* SCROLLBAR (WEBKIT)                                        */
/* ========================================================= */

.sidebar-content[b-bt4s1ezk51]::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content[b-bt4s1ezk51]::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-content[b-bt4s1ezk51]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

    .sidebar-content[b-bt4s1ezk51]::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.5);
    }
/* /Components/Tablas/GenericPagedTable.razor.rz.scp.css */
/* /Components/Tablas/GenericTable.razor.rz.scp.css */

.user-table[b-57k21dohx1] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .user-table th[b-57k21dohx1],
    .user-table td[b-57k21dohx1] {
        padding: 10px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

.role[b-57k21dohx1] {
    background-color: #dcdcff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.status[b-57k21dohx1] {
    background-color: #c4f1e2;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.dropdown[b-57k21dohx1] {
    position: relative;
    display: inline-block;
}

.dropbtn[b-57k21dohx1] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-content[b-57k21dohx1] {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content[b-57k21dohx1] {
    display: block;
}

.dropdown-content a[b-57k21dohx1] {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover[b-57k21dohx1] {
        background-color: #f1f1f1;
    }

.pagination[b-57k21dohx1] {
    display: flex;
    gap: 5px;
}

    .pagination button[b-57k21dohx1] {
        padding: 6px 12px;
        border: none;
        background: #f0f0f0;
        border-radius: 5px;
        cursor: pointer;
    }

        .pagination button.active[b-57k21dohx1] {
            background-color: #0a1e65;
            color: white;
        }

        .pagination button:disabled[b-57k21dohx1] {
            cursor: not-allowed;
            opacity: 0.5;
        }
/* /Components/Tablas/UserTable.razor.rz.scp.css */

.user-table[b-cfxemkafih] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.user-table th[b-cfxemkafih],
.user-table td[b-cfxemkafih] {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.role[b-cfxemkafih] {
    background-color: #dcdcff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.status[b-cfxemkafih] {
    background-color: #c4f1e2;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.dropdown[b-cfxemkafih] {
    position: relative;
    display: inline-block;
}

.dropbtn[b-cfxemkafih] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-content[b-cfxemkafih] {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content[b-cfxemkafih] {
    display: block;
}

.dropdown-content a[b-cfxemkafih] {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover[b-cfxemkafih] {
    background-color: #f1f1f1;
}

.pagination[b-cfxemkafih] {
    display: flex;
    gap: 5px;
}

.pagination button[b-cfxemkafih] {
    padding: 6px 12px;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
}

.pagination button.active[b-cfxemkafih] {
    background-color: #0a1e65;
    color: white;
}

.pagination button:disabled[b-cfxemkafih] {
    cursor: not-allowed;
    opacity: 0.5;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-5pke4433v2] {
    display: flex;
    min-height: 100vh;
}

.main-content[b-5pke4433v2] {
    display: block;
    width: 100%;
    padding: 70px 0px 0px 0px;
    background-color: #f6f9ff;
    height: 100vh;
    overflow-y: auto;
}
/*Navmenu*/
/* NavBar.razor.css */

.top-nav[b-5pke4433v2] {
    width: 100%;
    display: flex;
    height: 8%;
    align-items: center;
    padding: 10px 20px;
    background-color: white; /* Dark background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
    /*    position: relative;*/
    color: white;
    min-height: 50px;
}

.menu-icon[b-5pke4433v2] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18px;
    width: 24px;
    cursor: pointer;
}

    .menu-icon .bar[b-5pke4433v2] {
        width: 100%;
        height: 2px;
        background-color: #3f3f3f; /* White bars for dark background */
        border-radius: 2px;
    }

.nav-spacer[b-5pke4433v2] {
    flex-grow: 1;
}

.nav-actions[b-5pke4433v2] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar[b-5pke4433v2] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    border: 1px solid #ffffff33;
}

.settings-button[b-5pke4433v2] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.settings-icon[b-5pke4433v2] {
    width: 24px;
    height: 24px;
    color: #3f3f3f;
    transition: color 0.2s ease;
}

.settings-button:hover .settings-icon[b-5pke4433v2] {
    color: #ccc;
}

.fixed-top-nav[b-5pke4433v2] {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* /Pages/Administracion/Usuarios.razor.rz.scp.css */
/*.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}*/

/*Table*/
/*.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .user-table th,
    .user-table td {
        padding: 10px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

.role {
    background-color: #dcdcff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.status {
    background-color: #c4f1e2;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

.pagination {
    display: flex;
    gap: 5px;
}

    .pagination button {
        padding: 6px 12px;
        border: none;
        background: #f0f0f0;
        border-radius: 5px;
        cursor: pointer;
    }

        .pagination button.active {
            background-color: #0a1e65;
            color: white;
        }

        .pagination button:disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }*/
/* /Pages/Auth/Login.razor.rz.scp.css */
.validation-message[b-j7awohws45] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.validation-summary[b-j7awohws45] {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.25rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
} 
/* /Pages/Compras/Compras.razor.rz.scp.css */

.card[b-sj12bxu1ls] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-sj12bxu1ls] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-sj12bxu1ls] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-sj12bxu1ls] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/CuentasPorPagar/CuentasPorPagar.razor.rz.scp.css */

.card[b-68j7z9f1ly] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-68j7z9f1ly] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-68j7z9f1ly] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-68j7z9f1ly] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/Inventarios/Inventarios.razor.rz.scp.css */

.card[b-1f16tsmaki] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-1f16tsmaki] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-1f16tsmaki] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-1f16tsmaki] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/Vales/Vales.razor.rz.scp.css */

.card[b-u0e21bhunq] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-u0e21bhunq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-u0e21bhunq] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-u0e21bhunq] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/Ventas-de-contado.razor.rz.scp.css */

.card[b-djsciqdu33] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-djsciqdu33] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-djsciqdu33] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-djsciqdu33] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/Ventas/Ventas.razor.rz.scp.css */
.card[b-vno0e7zrxz] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-vno0e7zrxz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-vno0e7zrxz] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-vno0e7zrxz] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
