/* /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/GenericPagedTable.razor.rz.scp.css */
/*.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table th {
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}*/

.button-good[b-9s8ntnkbw0] {
  background-color: var(--secondary-blue);
  color: white;
}

/*@media (max-width: 768px) {
  .custom-table td {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .card-header {
    flex-direction: column !important;
    gap: 1rem;
  }
}
*/
/* /Components/GenericTable.razor.rz.scp.css */

.user-table[b-15mcbbdobq] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .user-table th[b-15mcbbdobq],
    .user-table td[b-15mcbbdobq] {
        padding: 10px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

.role[b-15mcbbdobq] {
    background-color: #dcdcff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.status[b-15mcbbdobq] {
    background-color: #c4f1e2;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.dropdown[b-15mcbbdobq] {
    position: relative;
    display: inline-block;
}

.dropbtn[b-15mcbbdobq] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-content[b-15mcbbdobq] {
    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-15mcbbdobq] {
    display: block;
}

.dropdown-content a[b-15mcbbdobq] {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover[b-15mcbbdobq] {
        background-color: #f1f1f1;
    }

.pagination[b-15mcbbdobq] {
    display: flex;
    gap: 5px;
}

    .pagination button[b-15mcbbdobq] {
        padding: 6px 12px;
        border: none;
        background: #f0f0f0;
        border-radius: 5px;
        cursor: pointer;
    }

        .pagination button.active[b-15mcbbdobq] {
            background-color: #0a1e65;
            color: white;
        }

        .pagination button:disabled[b-15mcbbdobq] {
            cursor: not-allowed;
            opacity: 0.5;
        }
/* /Components/NavMenu.razor.rz.scp.css */
/* NavBar.razor.css */

.top-nav[b-hovrorx04j] {
    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-hovrorx04j] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18px;
    width: 24px;
    cursor: pointer;
}

    .menu-icon .bar[b-hovrorx04j] {
        width: 100%;
        height: 2px;
        background-color: #3f3f3f; /* White bars for dark background */
        border-radius: 2px;
    }

.nav-spacer[b-hovrorx04j] {
    flex-grow: 1;
}

.nav-actions[b-hovrorx04j] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar[b-hovrorx04j] {
    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-hovrorx04j] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.settings-icon[b-hovrorx04j] {
    width: 24px;
    height: 24px;
    color: #3f3f3f;
    transition: color 0.2s ease;
}

.settings-button:hover .settings-icon[b-hovrorx04j] {
    color: #ccc;
}

.fixed-top-nav[b-hovrorx04j] {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* /Components/Sidebar.razor.rz.scp.css */
/* ==================== */
/* SIDEBAR LAYOUT STYLES */
/* ==================== */
.sidebar[b-4gr7uhliro] {
    width: 300px; /* Fixed width for better control */
    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-4gr7uhliro] {
        transform: translateX(-250px);
        width: 0;
        overflow: hidden;
    }

    /* Logo container */
    .sidebar > .logo[b-4gr7uhliro] {
        /*padding-left: 0;*/
        padding: 25px;
        /*text-align: center;*/
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .sidebar > .logo img[b-4gr7uhliro] {
            width: 80%; /* Better control over logo size */
            max-width: 180px;
            height: auto;
        }

/* Scrollable content area */
.sidebar-content[b-4gr7uhliro] {
    flex: 1;
    overflow-y: auto;
    padding: 15px 0;
}

    /* Custom scrollbar for sidebar */
    .sidebar-content[b-4gr7uhliro]::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-content[b-4gr7uhliro]::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-content[b-4gr7uhliro]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

        .sidebar-content[b-4gr7uhliro]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

/* ==================== */
/* MAIN CONTENT AREA */
/* ==================== */
.main-content[b-4gr7uhliro] {
    margin-left: 250px; /* Same as sidebar width */
    padding: 20px;
    min-height: 100vh;
    position: relative;
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

    .main-content.collapsed[b-4gr7uhliro] {
        margin-left: 0;
    }

/* ==================== */
/* MENU STYLES */
/* ==================== */
.menu[b-4gr7uhliro] {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

    .menu > li[b-4gr7uhliro] {
        margin-bottom: 5px;
    }

    .menu a.nav-link[b-4gr7uhliro] {
        color: white;
        text-decoration: none;
        /*display: flex;*/
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

        .menu a.nav-link:hover[b-4gr7uhliro] {
            background-color: #1d2e8a;
            cursor: pointer;
        }

        .menu a.nav-link.active[b-4gr7uhliro] {
            background-color: #2a2a2a;
            font-weight: bold;
            border-left: 4px solid #FFD700; /* Gold color */
        }

/* Submenu styles */
.has-submenu[b-4gr7uhliro] {
    display: block;
}
.has-submenu .submenu[b-4gr7uhliro] {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none;
    margin-left: 20px;
}

    .has-submenu .submenu.open[b-4gr7uhliro] {
        display: block;
    }

    .has-submenu .submenu li[b-4gr7uhliro] {
        margin-bottom: 3px;
    }

    .has-submenu .submenu a[b-4gr7uhliro] {
        padding: 8px 15px;
        font-size: 0.9em;
    }

/* Submenu toggle icon */
.submenu-toggle-icon[b-4gr7uhliro] {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.has-submenu .submenu.open ~ a .submenu-toggle-icon[b-4gr7uhliro] {
    transform: rotate(180deg);
}

/* Font Awesome icons */
.menu .fa-solid[b-4gr7uhliro] {
    width: 20px;
    text-align: center;
}

/* ==================== */
/* TOGGLE BUTTON STYLES */
/* ==================== */
.toggle-sidebar-btn[b-4gr7uhliro] {
    background: #0a1e65;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-right: 15px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .toggle-sidebar-btn:hover[b-4gr7uhliro] {
        background: #1d2e8a;
    }

.nav-link .conf:hover[b-4gr7uhliro]{
    cursor:pointer;
}

/*Close session*/
/*.sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
}*/

.sidebar-footer[b-4gr7uhliro] {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    /*padding: 0 1rem;*/
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto; /* Pushes it to bottom */
}

.logout-link[b-4gr7uhliro] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 0 1rem;
}

    .logout-link:hover[b-4gr7uhliro] {
        background-color: rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }

/* Adjust for collapsed state */
/*.sidebar.collapsed .logout-link span {
    display: none;
}

.sidebar.collapsed .logout-link {
    justify-content: center;
}*/
/* /Components/UserTable.razor.rz.scp.css */

.user-table[b-xkkw7n1ybd] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.user-table th[b-xkkw7n1ybd],
.user-table td[b-xkkw7n1ybd] {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.role[b-xkkw7n1ybd] {
    background-color: #dcdcff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.status[b-xkkw7n1ybd] {
    background-color: #c4f1e2;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 13px;
}

.dropdown[b-xkkw7n1ybd] {
    position: relative;
    display: inline-block;
}

.dropbtn[b-xkkw7n1ybd] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.dropdown-content[b-xkkw7n1ybd] {
    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-xkkw7n1ybd] {
    display: block;
}

.dropdown-content a[b-xkkw7n1ybd] {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover[b-xkkw7n1ybd] {
    background-color: #f1f1f1;
}

.pagination[b-xkkw7n1ybd] {
    display: flex;
    gap: 5px;
}

.pagination button[b-xkkw7n1ybd] {
    padding: 6px 12px;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
}

.pagination button.active[b-xkkw7n1ybd] {
    background-color: #0a1e65;
    color: white;
}

.pagination button:disabled[b-xkkw7n1ybd] {
    cursor: not-allowed;
    opacity: 0.5;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-5pke4433v2] {
    display: flex;
    height: 100vh;
}

.main-content[b-5pke4433v2] {
    display: block;
    width: 100%;
    padding: 0px 0px 0px 0px;
    background-color: #f6f9ff;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 50px;
}
/* /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.razor.rz.scp.css */

.card[b-ypx3wqsxjp] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-ypx3wqsxjp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-ypx3wqsxjp] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-ypx3wqsxjp] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/CuentasPorPagar.razor.rz.scp.css */

.card[b-ar88z6eu1s] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-ar88z6eu1s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-ar88z6eu1s] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-ar88z6eu1s] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/Inventarios.razor.rz.scp.css */

.card[b-9aqczy27z2] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-9aqczy27z2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-9aqczy27z2] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-9aqczy27z2] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Pages/Vales.razor.rz.scp.css */

.card[b-w1zmw44ooh] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-w1zmw44ooh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-w1zmw44ooh] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-w1zmw44ooh] {
    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.razor.rz.scp.css */
.card[b-b70po6280e] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.card-header[b-b70po6280e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.card-tools[b-b70po6280e] {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box[b-b70po6280e] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
