/* .product_img_container {
    max-height: 100px;
    min-height: 100px;

    max-width: 180px;
    min-width: 180px;

    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_img_container img {
    max-height: 100px;
    min-height: 100px;
   
    max-width: 180px;
    min-width: 180px;

    width: 100%;
    height: 100%;
    object-fit: cover; 
} */

.top-products {
    height: auto; 
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 5px;
}

.top-product-container tbody td {
    padding: 10px;
    border: 1px solid var(--border-color)
}

.label-prod-name, .label-prod-price {
    font-weight: bold;
}

.menu-container {
    width: 3vw; 
}

.menu-container button {
    background: none;
    border: none;
    box-shadow: none;
}

.closeSidePanel, .editProfile {
    background: none;
    border: none;
    box-shadow: none;
}


.tableContainerStorage {
    width: 100%;
}

.products-storage {
    overflow: auto; 
    max-height: 80vh; 
    min-height: 80vh; 
    height: 100%; 
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 5px;
}

.products-storage::-webkit-scrollbar {
    width: 0; 
}
  
.products-storage::-webkit-scrollbar-thumb {
    background-color: transparent;
}
  
.products-storage::-webkit-scrollbar-track {
    background-color: transparent;
}

.product-list-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 5px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
}

.product-tile {
    height: 200px;
    width: 100%;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: border 0.2s ease;
    padding: 6px;
}

.product-tile:hover {
    border: 1px solid var(--primary-color);
}

.product_img_container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product_img_container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}




.product-top-grid {
    display: grid;
    grid-template-rows: repeat(1, 1fr); 
    grid-template-columns: repeat(5, 1fr); 
    gap: 5px; 
    justify-content: center;
    cursor: pointer;
    object-fit: contain;
}

.product-top-grid td {
    width: 100%;
    aspect-ratio: 3 / 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-top-grid td:hover {
    border: 1px solid var(--primary-color);
}


.product-top-grid td:nth-child(6),
.product-top-grid td:nth-child(7) {
    grid-column: span 2; 
}


.side-content-panel {
    padding: 10px;
    position: fixed;
    right: 0;
    top: 0;
    max-width: 45vh;
    min-width: 45vh;
    max-height: 99vh;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%); 
    overflow: auto;
}

.side-content-panel.show {
    transform: translateX(0); 
}



.side-content-panel::-webkit-scrollbar {
    width: 0; 
}
  
.side-content-panel::-webkit-scrollbar-thumb {
    background-color: transparent;
}
  
.side-content-panel::-webkit-scrollbar-track {
    background-color: transparent;
}

.profile {
   width: 17rem; 
   background-color: transparent; 
   text-align:center;
  
}


.system-info {
    padding: 10px;
  
    height: auto;
    width: 100%;

}

.pax-content {
    height: 50vh;
}

.no_pax {
    height: 100%;
    width: 40%;
    border: 1px solid var(--border-color);
    padding: 10px;
}

.select_customer_to_discount {
    width: 60%;
    height: 100%;
    border: 1px solid var(--border-color);
}

.eligible_customers_container {
    overflow: auto;
    height: 100%; 
}

.eligible_customers_container::-webkit-scrollbar {
    width: 0; 
}
  
.eligible_customers_container::-webkit-scrollbar-thumb {
    background-color: transparent;
}
  
.eligible_customers_container::-webkit-scrollbar-track {
    background-color: transparent;
}

.operationBtn {
    border: none;
    width: 50px;
    outline: none;
    box-shadow: none;
}

.eligible_discount:hover {
    background: var(--border-color);
    cursor: pointer;
}

.eligibleId {
    cursor: pointer;
}

.clearBgColor, .bgImg, .cancelUpdateColor {
    height: 50px;
    border-radius: 5px;

}

#colorPopup {
    display: none; 
    position: absolute; 
    background: var(--secondary-color); 
    border: 1px solid var(--border-color); 
    padding: 10px; 
    z-index: 999; 
    width: 50vh
}


input.backolor {
    height: 100px;
    width: 120px;
}


.sizes_container {
    border: 2px solid var(--border-color);
    height: 10vh;
    width: 8vw;
}

.sizes_container.active_size {
    border: 2px solid var(--primary-color) !important;
}


.setted_qty {
    height: 6vh !important;
    border: 2px solid var(--border-color);
}



.total-section {
    background: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.total-label {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
}


.notes-section {
    margin-bottom: 20px;
}

.notes-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.notes-input {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s;
    background: #1a1a1a;
    color: var(--text-color);
}

.notes-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--background-color);
}

.notes-input::placeholder {
    color: #888;
}



.modal-footer {
    padding: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #2a2a2a;
}

.footer-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cancel-btn {
    background: #555;
    color: var(--text-color);
}

.cancel-btn:hover {
    background: #666;
}

.confirm-btn, .confirm-btn_table {
    background: var(--primary-color);
    color: var(--text-color);
}


.qty-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qty-controls-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.qty-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #444;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
}

.qty-btn {
    background: #ff6b35;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #e55a2b;
}

.qty-btn:active {
    transform: scale(0.95);
}

.minus-btn {
    border-radius: 0;
}

.plus-btn {
    border-radius: 0;
}

.qty-input-display {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #ff6b35;
    background: #2a2a2a;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
}

.qty-actions {
    width: 100%;
}

.action-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-btn {
    background: #dc3545;
    color: white;
}

.clear-btn:hover {
    background: #c82333;
}



.addons-section {
    margin-bottom: 20px;
}

.addons-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.addons-label {
    font-size: large;
    font-weight: 500;
    color: var(--text-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007bff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.addons-panel {
    position: absolute;
    top: 7.5vh;
    right: -300px; /* Hidden by default */
    width: 300px;
    min-height: 59.5%;
    max-height: 89.5%;
    height: 100%;
    background: var(--background-color);
    border-left: 1px solid var(--background-color);
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.addons-panel.show {
    right: 0; /* Slide in */
}

.addons-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 2px;
}

.addon-price {
    font-size: 12px;
    color: #c7c4c4;
}

.addon-checkbox {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    cursor: pointer;
}


.floor_content {
    min-height: 50vh;
    max-height: 70vh;
    height: 100%;
    overflow-y: auto;
}


.addTableBtn {
    height: 5vh;
    border-radius: 10px;
    width: 10vw;
}

.addTableBtn:hover {
    background: var(--background-color);
}


.sugar_lvl {
  background : transparent;
  height: 5vh;
  border-radius: 10px;
  padding: 5px;
  font-size: larger;
  outline: none !important;
  border: 2px solid var(--border-color);
}

.table_item {
    height: 15vh;
    width: 100%; 
    border-radius: 10px;
}


.table_item:hover {
    border: 2px solid var(--primary-color) !important;
}

.tableMenu {
    min-width: 8vw;
}

.menu-arrow {
    width: 0;
    height: 0;
    border-start-start-radius: 5px;
    border-left: 20px solid transparent;
    border-bottom: 20px solid white;
    position: absolute;
    top: 5px;
    left: -15px;
    z-index: 1;   
}


.menu-item {
    font-size: x-large;
}

.menu-item:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding-left: 5px;
    border-radius: 5px;
}







