body {
    font-family: Arial, sans-serif;
    display: flex;
    margin: 0;
    background-color: #f0f0f0;
    /* Gri deschis pentru fundalul întregii pagini */
}

#menu {
    width: 320px;
    background: #19196a;
    /* #159060 */
    color: white;
    /* padding: 20px; */
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: auto;
}

.logo {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 150px;
    margin-top: 15px;
}

/* width */
#menu::-webkit-scrollbar {
    width: 10px;
}

/* Track */
#menu::-webkit-scrollbar-track {
    background: #19196a;
}

/* Handle */
#menu::-webkit-scrollbar-thumb {
    background: rgb(246 246 246 / 40%);
}

/* Handle on hover */
#menu::-webkit-scrollbar-thumb:hover {
    background: rgb(246 246 246 / 40%);
}

#menu h1 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    /* padding-bottom: 20px; */
    font-family: "Poppins", sans-serif;
    color: rgb(246 246 246 / 80%);
}

#menu p {
    padding: 12px 20px !important;
    letter-spacing: .05em;
    pointer-events: none;
    font-size: 12px;
    text-transform: uppercase;
    color: rgb(246 246 246 / 80%);
    font-weight: 700;
    margin: 0;
}

#menu .fi {
    font-size: 17px;
    margin-right: 8px;
    color: rgb(246 246 246 / 80%);
}

.flex {
    display: flex;
    align-items: center;
}

#menu h2 {
    margin-top: 0;
    font-size: 18px;
    text-align: center;
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu li {
    text-align: left;
    border-radius: 5px;
    font-size: 15px;
    margin-left: 24px;
    color: rgb(246 246 246 / 80%);
    /* padding: .65rem 1.5rem; */
    /* margin-bottom: 17px; */

}

#menu a {
    display: block;
    padding: .65rem 1.5rem;
    color: rgb(246 246 246 / 80%);
    position: relative;
    font-size: 15px;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-decoration: none;
}




.dropdown-btn {
    cursor: pointer;
    background: none;
    text-align: left;
    border-radius: 5px;
    outline: none;
    border: none;
    color: rgb(246 246 246 / 80%);
    padding: .65rem 1.5rem;
    width: 100%;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.dropdown-button {
    cursor: pointer;
    background: none;
    text-align: left;
    border-radius: 5px;
    outline: none;
    border: none;
    color: rgb(246 246 246 / 80%);
    padding: .65rem 1.5rem;
    font-size: 15px;
}

.dropdown-container {
    display: none;
}


.menu {
    /* margin-bottom: 17px; */
    cursor: pointer;
    text-align: left;
    border-radius: 5px;
}


#content {
    flex-grow: 1;
    padding: 20px;
    background-color: white;
    /* Fundal gri foarte deschis pentru zona de conținut */
}

.content {
    flex-grow: 1;
    background-color: white;
    width: 90%;
    /* Fundal gri foarte deschis pentru zona de conținut */
}


#formadaugaprodus {
    width: 1200px;
    overflow-x: auto;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-top: 17px;
    font-size: 12px;
}

thead {
    background-color: #f1f5f9;
    /* culoare albastru-gri foarte deschis */
}

th,
td {
    text-align: left;
    padding: 12px 16px;
}

th {
    font-weight: bold;
    color: #1e293b;
    font-size: 14px;
}

tbody tr {
    border-bottom: 1px solid #e2e8f0;
    /* linie subtilă între rânduri */
}

tbody tr:last-child {
    border-bottom: none;
}

tbody td {
    color: #334146;
}

td:first-child {
    color: #0f172a;
    font-weight: 500;
}

td:nth-child(4) {
    color: #64748b;
}



.addProductForm {
    display: flex;
    justify-content: space-between;
}

#addProductForm label {
    font-weight: bold;
    font-size: 15px;
}

#addProductForm input,
#addProductForm textarea {
    width: 90%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addProductForm select {
    width: 94%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#produse select {
    width: 300px;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addProductForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#addProductForm button:hover {
    background-color: #45a049;
}

#addCategoryForm {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#addCategoryForm label {
    font-weight: bold;
}

#addCategoryForm input {
    width: 98%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addCategoryForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#addCategoryForm button:hover {
    background-color: #45a049;
}

#editPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#openAddNomenclatoare {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#popupContent {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

#popupContent input,
#popupContent select,
#popupContent textarea {
    width: 96%;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#popupContent button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#popupContent .button-close {
    color: #333;
    display: flex;
    justify-content: end;
    margin-bottom: 8px;
    cursor: pointer;
}

#table button {
    background-color: transparent;
    color: black;
    /* padding: 10px 20px; */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 17px;
}

.login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#login {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

#login h2 {
    margin-bottom: 20px;
    color: #333;
}

#login .error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

#login input[type="text"],
input[type="password"] {
    width: 94%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#login input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #19196a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
}

#login label {
    text-align: left;
    font-weight: bold;
    display: flex;
    margin-top: 8px;
}

.authentication {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#authentication {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

#authentication h2 {
    margin-bottom: 20px;
    color: #333;
}

#authentication .error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

#authentication input[type="text"],
input[type="password"] {
    width: 94%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#authentication select {
    width: 98%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#authentication input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #19196a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
}

#authentication label {
    text-align: left;
    font-weight: bold;
    display: flex;
    margin-top: 8px;
}

.autentificare {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.container-autentificare {
    width: 100%;
    max-width: 290px;
}

.logins {
    color: #19196a;
    text-decoration: none;
    position: relative;
    top: 8px;
}

#navbar {
    background-color: #19196a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.button {
    width: 100%;
    padding: 10px;
    background: #19196a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
}

#content input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#addPopupForm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 150;
}

.popupForm {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    z-index: 150;
}

#addPopupForm input,
#addPopupForm textarea {
    width: 98% !important;
    padding: 8px !important;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}


#addPopupForm select {
    width: 100%;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addPopupForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#popupContent .button-close {
    color: #333;
    display: flex;
    justify-content: end;
    margin-bottom: 8px;
    cursor: pointer;
}

#form {
    width: 1200px;
    overflow-x: auto;
    margin: 0 auto;
}

.button-addPopupForm {
    background-color: transparent;
    display: block;
    margin-left: auto;
    border: none;
    font-size: 30px;
}

#addPopupForm label {
    font-weight: bold;
    font-size: 15px;
}

.closePopupForm {
    background-color: transparent;
    display: block;
    margin-left: auto;
    border: none;
    font-size: 30px;
    padding: 0px !important;
    display: flex;
    justify-content: end;
}

#editPopupForm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.editPopupForm {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    z-index: 150;
}

#editPopupForm input,
#editPopupForm select,
#editPopupForm textarea {
    width: 98%;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#editPopupForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#editPopupForm .button-close {
    color: #333;
    display: flex;
    justify-content: end;
    margin-bottom: 8px;
    cursor: pointer;
}

.card-qr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.qr-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    transition: transform 0.2s ease;
    position: relative;
    display: inline-block;
    margin: 8px;
    text-align: center;

}

/* .qr-card:hover {
    transform: scale(1.03);
} */

.user input,
.user select,
.user textarea {
    width: 98% !important;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.imagine {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    border-radius: 100px;
    background: white;
    padding: 4px;
    object-fit: contain;
    z-index: 3;
}

.img {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.img-qr {
    width: 300px;
    z-index: 1;
}

.masa-id {
    position: absolute;
    top: 63%;
    left: 54%;
}

.phone {
    width: 21px !important;
    margin-left: 8px;
    margin-right: 8px;
}

.ajutor {
    margin-right: 8px;
    cursor: pointer;
}

.plateste {
    margin-right: 8px;
    cursor: pointer;
}

.navbarClienti {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    padding: 30px;
}

.logoClienti {
    width: 100px;
}

#search input {
    width: 80%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    border-radius: 4px;
    font-size: 15px !important;
}

#search button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: #ccc;
    font-size: 17px;
}

#search .fi {
    display: flex;
    align-items: center;
}

#search {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 200px;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    margin-right: 8px;
}

.flex-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart {
    display: flex;
    align-items: center;
}

#navbarClienti .fi {
    font-size: 21px;
    color: #19196a;
}

#navbarClienti p {
    font-size: 17px;
    color: #19196a;
    font-weight: 600;
    margin: 0;
}

#navbarClienti a {
    text-decoration: none;
}

#meniuClienti {
    background-color: #19196a;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

#meniuClienti a {
    display: block;
    padding: 4px 10px;
    color: rgb(246 246 246 / 80%);
    position: relative;
    font-size: 15px;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-decoration: none;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

#navbarClienti {
    background-color: white;
}

.meniuClienti {
    display: flex;
}

.produse {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    box-shadow: 8px 8px 19px 4px rgba(190, 190, 190, 1);
    width: 300px !important;
    border-radius: 8px;
    background-color: #fff;
    padding: 15px;
    height: auto !important;
    margin: 8px;
}

.imgProdus {
    width: 100%;
    max-width: 300px;
    height: 240px;
}

.titleProdus {
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    margin-top: 15px;
}

.pret {
    display: flex;
    color: #19196a;
    font-weight: 600;
    text-align: left;
    margin-top: 0px;
    font-size: 15px;
    width: 100%;
    max-width: 100px;
}

.ingrediente {
    text-align: left !important;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 100 !important;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
}

.img-cos {
    width: 100%;
    max-width: 100px;
}

.cos {
    display: flex;
    margin-bottom: 30px;
}

.containers {
    box-shadow: 8px 8px 19px 4px rgba(190, 190, 190, 1);
    width: 100%;
    max-width: 1000px;
    border-radius: 8px;
    background-color: #fff;
    padding: 15px;
    height: auto !important;
    margin: auto;
}

.cart-info {
    margin-left: 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
}

.cart-title {
    font-size: 17px;
    font-weight: 600;
    text-align: left;
}

.cantitate {
    width: 100%;
    max-width: 80px;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}

.cantitates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 170px;
}

.price {
    font-weight: 600;
}

.cantitate-cos {
    position: absolute;
    top: 39px;
    right: 104px;
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carts {
    margin-right: 10px;
}

.comanda {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-comanda {
    padding: 10px;
    background: #19196a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.comanda h3 {
    margin: 0;
}

.logo-restaurant {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.left {
    width: 100%;
    max-width: 400px;
}

.right {
    width: 100%;
    max-width: 400px;
    margin-left: 30px;
}

.produse-card {
    text-decoration: none;
    color: initial !important;
}

.product-detail {
    width: 100%;
    max-width: 800px;
    height: 300px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}

.product-img {
    width: 100%;
    max-width: 400px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}

.price {
    color: #19196a;
    font-weight: 600;
    text-align: left;
    margin-top: 0px;
    font-size: 19px;
}

.section {
    margin-top: 15px;
}

.button-produs {
    margin-top: 30px;
}

.badge {
    color: #4CAF50;
    font-weight: 600;
}

.finalize {
    color: blue !important;
}

.logos {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 150px;
    margin-top: 15px;
    background-color: white;
}

.cautare input {
    width: 80% !important;
    padding: 8px !important;
    margin: 5px 0 !important;
    border: none !important;
    border-radius: 4px !important;
}

.cautare button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: #ccc;
    font-size: 17px;
}

.cautare .fi {
    display: flex;
    align-items: center;
}

.cautare {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 400px !important;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    margin-right: 8px;
}

.flex-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meniuClienti {
    display: flex;
    overflow-x: auto;
    /* activăm scroll orizontal */
    /* white-space: nowrap; */
    /* spațiu între butoane */
    /* scrollbar-width: thin; */
    /* pentru Firefox */
    scrollbar-color: none;
}

.meniuClienti::-webkit-scrollbar {
    height: 1px;
    /* înălțimea scroll-ului */
}

.meniuClienti::-webkit-scrollbar-thumb {
    background: none;
}

.meniuClienti::-webkit-scrollbar-track {
    background: none;
}

.navbar-clienti {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.closeMeniu {
    display: none;
}

.notif-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 94%;
    transition: transform 0.2s ease;
    position: relative;
    display: inline-block;
    margin: 8px;
    text-align: center;
}

.modal {
    display: none;
    /* ascuns implicit */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn .3s ease;
}

.modal-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.modal-buttons {
    display: flex;
    justify-content: center;
}

.modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin: 8px;
}

.btn-yes {
    background: #28a745;
    color: white;
}

.btn-no {
    background: #dc3545;
    color: white;
}

.table {
    text-align: left;
}

.order-card__total {
    display: flex;
    margin-top: 8px;
}

.order-card__body {}

.order-line {
    display: flex;
}

.ol-qty {
    margin-left: 8px;
    margin-right: 8px;
}

.cart-containers h3 {
    font-size: 17px;
}

.ol-name {
    font-weight: 600;
}

.order-card__footer {
    margin-top: 8px;
}

.cart-containers {
    margin-top: 8px !important;
}

.completed .finalize {
    width: 100%;
    max-width: 100px;
    padding: 10px;
    background: #19196a;
    color: white !important;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.plata {
    text-align: right;
    font-size: 12px;
    margin: 0px;
}

@media(max-width:600px) {
    .container {
        padding: 15px;
    }

    .navbarClienti {
        display: block;
    }

    #search {
        width: 100%;
        max-width: 600px;
    }

    .cantitate-cos {
        top: 25px;
        right: 60px;
    }

    #meniuClienti {
        padding: 15px;
    }

    .cos {
        display: flex;
        justify-content: space-between;
    }

    .containers {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }

    .cart-info {
        display: block;
    }

    .card {
        margin: 0px;
        margin-top: 30px;
    }

    .cantitate {
        padding: 4px;
        width: 100%;
        max-width: 60px;
    }

    .cantitates {
        width: 100%;
        max-width: 140px;
        font-size: 15px;
    }

    .price {
        font-size: 15px;
        margin-top: 8px;
    }

    .comanda h3 {
        font-size: 15px;
    }

    .product-detail {
        display: block;
        height: auto;
        width: 100%;
        max-width: initial;
    }

    .left {
        width: 100%;
        max-width: 600px;
    }

    .right {
        width: 100%;
        max-width: 600px;
        margin: 0;
    }

    .product-img {
        display: flex;
        margin: auto;
    }

    .product-title {
        text-align: center;
    }

    .prices {
        text-align: center;
    }

    .section {
        text-align: center;
    }

    .button-produs {
        margin: auto;
        margin-top: 30px;
    }

    .closeMeniu {
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
    }

    #menu {
        width: 0px;
        overflow-y: scroll;
        height: auto;
    }

    .qr-card {
        margin: 0;
        margin-top: 8px;
    }

    #content {
        padding: 8px;
    }

    .popupForm {
        width: 100%;
        max-width: 300px;
    }

    #form {
        width: 100%;
        max-width: 600px;
        overflow-x: auto;
        margin: 0 auto;
    }

    .editPopupForm {
        width: 100%;
        max-width: 300px;
    }

    th {
        font-size: 12px;
    }

    .orders th:nth-child(4),
    td:nth-child(4) {
        width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .finalize {
        font-size: 15px !important;
    }

    .p-restaurant {
        text-align: center;
    }

    .logo-restaurant {
        display: flex;
        margin: auto;
    }

    .restaurant {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .restaurant1 {
        display: flex;
        justify-content: center;
        margin: auto;
        width: 100%;
        max-width: 190px;
    }

    .moneda {
        width: 94% !important;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    .user input {
        width: 94% !important;
    }

    #authentication {
        width: 300px;
        height: 400px;
        overflow-y: auto;
    }

    .autentificare {
        display: block;
    }

    #authentication label {
        margin-top: 0px;
    }

    .notif-card {
        display: block;
        width: 90%;
        padding: 15px;
        margin: auto;
        margin-top: 8px;
    }

    .notif-prods {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .completed {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .plata {
        text-align: center;
    }

}








.toggleNav {
    cursor: pointer;
}

.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.5s;
}

#notificationPopup {
    color: #495061;
    font-weight: 600;
    font-size: 15px;
}

#notificationClose {
    cursor: pointer;
    font-weight: bold;
}

#notificationMessage {
    flex-grow: 1;
}

.minStockBackground {
    /* background-color: red !important; */
    /* Schimbă culoarea de fundal în roșu */
    color: red;
    /* Schimbă culoarea textului pentru a fi vizibil pe fundalul roșu */
    font-weight: bold;
    /* Îngroșează textul pentru a atrage atenția */
}

#notificationCount {
    position: absolute;
    top: 4px;
    right: 36px;
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bellIcon {
    cursor: pointer;
}

#notificationList li {
    padding: 8px;
    margin-bottom: 8px;
    list-style-type: none;
    font-size: 15px;
    font-weight: 400;

}

#notificationList {
    padding-inline-start: 0px;

}

.produs {
    color: #495061;
    font-weight: 600;
}

#inventoryTable .table-row {
    display: none;
}

#utilaj_compatibil_section {
    display: none;
}


#notificationPage button {
    background-color: transparent;
    border: none;
}

#notificationPopup {
    display: none;
    position: fixed;
    top: 8%;
    left: 68%;
    /* transform: translate(-50%, -50%); */
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* height: 370px; */
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

#notificationPopup button {
    background-color: #4CAF50;
    color: white;
    padding: 20px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
}

input:focus {
    outline: none;
}

#renameCategoryForm {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#renameCategoryForm label {
    font-weight: bold;
}

#renameCategoryForm input,
#renameCategoryForm select,
#renameCategoryForm textarea {
    width: 98%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#renameCategoryForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#renameCategoryForm button:hover {
    background-color: #45a049;
}

#utilajeTable button {
    background-color: transparent;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
    font-size: 17px;
}

#utilajeTable {
    vertical-align: top;
}

#utilajeTable td {
    padding: 10px;
}

.utilajeTable th {
    padding: 4px;
}

#addUtilajForm {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
}

#addUtilajForm label {
    font-weight: bold;
}

#addUtilajForm input,
#addUtilajForm select,
#addUtilajForm textarea {
    width: 98%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addUtilajForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#addUtilajForm button:hover {
    background-color: #45a049;
}

#addCategoryUtilajeForm {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#addCategoryUtilajeForm label {
    font-weight: bold;
}

#addCategoryUtilajeForm input {
    width: 98%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addCategoryUtilajeForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#addCategoryUtilajeForm button:hover {
    background-color: #45a049;
}

#renameCategoryUtilajeForm {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#renameCategoryUtilajeForm label {
    font-weight: bold;
}

#renameCategoryUtilajeForm input,
#renameCategoryUtilajeForm select,
#renameCategoryUtilajeForm textarea {
    width: 98%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#renameCategoryUtilajeForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#renameCategoryUtilajeForm button:hover {
    background-color: #45a049;
}

#deleteCategoryForm {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#deleteCategoryForm label {
    font-weight: bold;
}

#deleteCategoryForm input,
#deleteCategoryForm select,
#deleteCategoryForm textarea {
    width: 98%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#deleteCategoryForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#deleteCategoryForm button:hover {
    background-color: #45a049;
}

#editPopupUtilaj {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#popupContentUtilaj {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 800px;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    overflow: auto;
}

#popupContentUtilaj input,
#popupContentUtilaj select,
#popupContentUtilaj textarea {
    width: 98%;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#popupContentUtilaj button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.utilajTable {
    font-size: 13px;
    padding: 0px !important;
}

.utilajTable th {
    font-size: 13px;
    padding: 4px;
}

.custom-select-container {
    position: relative;
    margin-bottom: 15px;
}

.search-piesa {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
}

.options-list-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    z-index: 10;
}

.options-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.option {
    padding: 8px;
    cursor: pointer;
}

.option:hover {
    background-color: #f0f0f0;
}

#reportForm input,
#reportForm select,
#reportForm textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.addproductform1 {
    width: 100%;
    max-width: 300px;
}

.addProductForm1 {
    display: flex;
    justify-content: space-between;
    width: 98%;
}

.addproductform1 {
    width: 300px;
}

#reportForm button {
    background-color: #4CAF50 !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reportForm button {
    background-color: #4CAF50 !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#reportForm button:hover {
    background-color: #45a049;
}

/* #formAdaugaProdus {
    margin-top: 30px;
} */

#formAdaugaProdus th {
    padding: 8px;
    font-size: 13px;
}

#formAdaugaProdus td {
    font-size: 13px;
}

#addProductForm {}

.addproductform {
    width: 100%;
    max-width: 300px;
}

.nomenclatoare {
    margin-top: 8px;
}

#usedPartsPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#usedPartsPopup table {
    width: 98%;
    border-collapse: collapse;
}

#usedPartsPopup button {
    margin-top: 10px;
}

.usedPartsPopup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 740px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

#usedPartsPopup button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#pieseCompatibilePopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}


.pieseCompatibilePopup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 600px;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    overflow-y: scroll;
}

.pieseCompatibilePopup button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#ultimaReviziePopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.ultimaReviziePopup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

.ultimaReviziePopup button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#urmatoareaReviziePopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.urmatoareaReviziePopup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

.urmatoareaReviziePopup button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}


#addProductForm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 150;
}

.popupProductForm {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    z-index: 150;
}

#addProductForm input,
#addProductForm textarea {
    width: 96%;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}


#addProductForm select {
    width: 100%;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#addProductForm button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    display: block;
    margin-top: 8px;
}

#popupContent .button-close {
    color: #333;
    display: flex;
    justify-content: end;
    margin-bottom: 8px;
    cursor: pointer;
}

.button-addProductForm {
    background-color: transparent;
    display: block;
    margin-left: auto;
    border: none;
    font-size: 30px;
}

.buttonaddProductForm {
    background-color: transparent;
    display: block;
    margin-left: auto;
    border: none;
    font-size: 30px;
    padding: 0px !important;
    display: flex;
    justify-content: end;
}

.button-utlaje {
    padding: 0px !important;
    color: #334146 !important;
    font-size: 12px !important;
}

.minStockBackground {
    background-color: #ffcccc !important;
    color: #b30000;
    font-weight: bold;
}

.denumire_produs {
    display: none;
}

.hidden {
    display: none;
}

.toggle-btn {
    cursor: pointer;
    margin-right: 5px;
}

.spacer {
    display: inline-block;
    width: 12px;
}

.pagination {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.pagination-button {
    padding: 10px;
    text-decoration: none;
    color: #19196a;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: transparent;
}

.pagination-button:hover {
    background-color: #f0f0f0;
}

.pagination-button.active {
    background-color: #19196a;
    color: white;
    font-weight: bold;
    border-color: #19196a;
}

.pagination-button:disabled {
    cursor: not-allowed;
    background-color: #e0e0e0;
    color: #aaa;
    display: none;
}

ul[class^="nivel-"] {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.nivel-0>li {
    font-weight: bold;
}

.nivel-1>li {
    color: #444;
}

.nivel-2>li {
    color: #666;
}

.dropdown-container {
    list-style: none;
    padding-left: 0;
}

/* .dropdown-item>.dropdown-header {
    cursor: pointer;
    font-weight: bold;
    padding: 5px 10px;
    color: white;
} */

/* .dropdown-item>.dropdown-header:hover {
    background-color: #444;
} */

.nested-dropdown {
    list-style: none;
    margin-left: 15px;
    display: none;
}

/* .nested-dropdown li a {
    color: white;
    text-decoration: none;
} */

.nested-dropdown li a:hover {
    text-decoration: underline;
}

.alerta-stoc {
    background-color: #ffe6e6 !important;
    color: #a94442 !important;
    font-weight: bold;
}

#categorie_principala_wrapper {
    display: none;
}

#subcategorie_wrapper {
    display: none;
}

#subsubcategorie_wrapper {
    display: none;
}

#cod_wrapper {
    display: none;
}

.custom-multiselect {
    position: relative;
    display: block;
    width: 100%;
}

.selectBox {
    display: block;
    padding: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
}

.checkboxes {
    display: none;
    border: 1px solid #ccc;
    position: absolute;
    background: white;
    z-index: 999;
    width: 100%;
    height: 100px;
    overflow-y: scroll;
}

.checkboxes label {
    display: block;
    padding: 5px;
    cursor: pointer;
}

.checkboxes input[type="checkbox"] {
    margin-right: 8px;
}

.custom-multiselect input {
    width: 30px !important;
    padding: 8px;
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}