@media (min-width: 768px)
{

.label-form label {
    font-size: 16px !important;
}
#total-amount {
    font-size: 40px !important;
}
#rest-to-pay {
    font-size: 30px;
}
.add-product-btn, .btn, .menu-item {
    font-size: 18px !important;
}
.right-porcent, .right-dh {
    line-height: 53px !important;
}

}
@media print {
	.page-break {
		page-break-before: always;
	}
}
:root {
	--primary-color: #39b4c7;
	--primary-hover-color: #2796a7;
	--secondary-color: #2e55c8;
	--text-color: #697074;
}
body {
	background: #fff;
}
*,body,html {
	font-family: Outfit, Arial;
}
* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	transition: 0.3s;
}
select {
	padding: 15px;
	min-width: 200px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	background: #fff;
}
button {
	cursor: pointer;
	font-weight: 600;
}
body, html, div, input, textarea {
	font-size: 18px;
	position: relative;
}
body, html {
	margin: 0;
	padding: 0;
	height: 100%;
}
a {
	text-decoration: none;
	color: var(--primary-color);
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	margin-bottom: 20px;
	font-weight: 600;
}
p {
	margin: 0;
}
input, textarea {
	margin-bottom: 30px;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	outline: none;
}
ol, ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.container {
	box-sizing: border-box;
	max-width: 980px;
	margin: 0 auto;
	padding: 30px 20px;
	position: relative;
}
.productForm button,.acheter-btn {
	background-color: var(--primary-color);
	color: #fff;
	cursor: pointer;
}
/* Style pour le label flottant */
.label-form label {
	position: absolute;
	top: 0;
	left: 10px;
	transform: translateY(-50%);
	background: white;
	padding: 0 5px;
	font-size: 14px;
	pointer-events: none;
	color: var(--text-color);
}
form div {
	position: relative;
}
strong {
	font-weight: 600;
}
video {
    object-fit: cover; /* Ensures the video element fills the space */
}
.swiper-container {
	max-width: 1000px;
	margin: auto;
	width: 100%;
	height: calc(100vh - 70px);
	overflow: hidden;
}
.swiper-slide {
	display: flex;
	padding: 20px;
	justify-content: center;
	align-items: center;
}
.product-thumbs {
	width: calc(50% + 60px);
}
.large-image img {
	max-width: 100%;
	height: -webkit-fill-available;
	border-radius: 10px;
	border: 1px solid #dee5e5;
	box-shadow: 0 0 5px #ddd;
}
.thumbnails {
	margin-top: 20px;
	text-align: center;
	display: flex;
	justify-content: space-between;
}
#productInfo,table .t-product {
	align-items: center;
	display: flex;
}
.thumbnail {
	max-width: calc(100% / 5 - 10px);
	height: auto;
	object-fit: cover;
	cursor: pointer;
	border-radius: 5px;
	border: 2px solid #fff;
	box-shadow: 0 0 5px #ddd;
}
.product-details {
	text-align: left;
	padding: 30px;
}
.metric-icon,.product-title {
	font-size: 24px;
	margin-bottom: 10px;
}
.product-description {
	max-width: 500px;
	margin: auto;
}
#imagePreview,#productInfo,.confirm-msg {
	margin: 15px 0;
}
.acheter-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 18px;
}
.acheter-btn:hover,.add-product-btn:hover {
	background-color: var(--primary-hover-color);
}
#popupContainer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}
#imagePreview {
	display: flex;
	gap: 10px;
}
#imagePreview img {
	width: 74px;
	height: 74px;
	border: 1px solid #ddd;
	border-radius: 5px;
	object-fit: cover;
	box-shadow: 0 2px 2px #e8e8e8;
}
.modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            overflow: auto;
        }

        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border-radius: 5px;
            width: 80%;
            max-width: 700px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-modal:hover {
            color: #333;
        }

        .edit-product-form {
            margin-top: 40px;
        }

        .inline-group {
            display: flex;
            gap: 15px;
        }

        .inline-group > div {
            flex: 1;
            position: relative;
        }

        #imagePreview {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        .preview-img {
            max-width: 100px;
            max-height: 100px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
.add-product-form, .checkout-content {
	background-color: #fff;
	padding: 30px 20px;
	border-radius: 10px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	box-shadow: 0 2px 4px 1px rgb(0 0 0 / 10%);
}
.productForm input, .productForm textarea {
	width: 100%;
}
.productForm textarea {
	height: 100px;
}
.productForm button {
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}
.productForm button:hover {
	background-color: #2796a7;
}
.close-btn {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	right: 10px;
	font-size: 30px;
	line-height: 30px;
	cursor: pointer;
	text-align: center;
	color: #888;
	border-radius: 100px;
}
.close-btn:hover {
	color: var(--text-color);
	background: #e6e6e9dd;
}
#productInfo {
	padding: 10px;
	border: 1px solid #d0d0d0;
	border-radius: 5px;
}
#productImage {
	width: 70px;
	height: 70px;
	border-radius: 5px;
	margin-right: 10px;
}
.swiper-button-next,.swiper-button-prev {
	color: #2796a7;
}
.swiper-pagination-bullet-active {
	background: #2796a7;
}
.metrics-container {
	display: grid;
	grid-template-columns: repeat(4, 2fr);
	gap: 20px;
	margin-bottom: 20px;
}
.menu,.pagination a {
	display: inline-block;
}
.metric-box {
	border-radius: 8px;
	box-shadow: 0 0px 10px #dfe0e4;
	padding: 20px;
	background: #fff;
}
.metric-info h3 {
	font-size: 22px;
	color: #000;
}
.metric-info p {
	margin-bottom: 5px;
	font-size: 16px;
	color: var(--text-color);
}
.dashboard,.menu-item:hover,.menu-active {
	background: #f4f7fa;
}
.metric-icon {
	color: var(--secondary-color);
}
/* Ensure the header is styled for both desktop and mobile */
header {
	display: flex;
	height: 70px;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo a {
	font-size: 24px;
	font-weight: bold;
	color: var(--secondary-color);
}
.logo img {
	width: 30px;
	vertical-align: bottom;
	margin-right: 5px;
}
.logo-enter {
    width: 400px;
    display: block;
    margin: 60px auto;
}
/* Style the menu items */
.menu {
	display: flex;
}
.menu-item {
	margin: 0 10px;
	color: var(--text-color);
	text-decoration: none;
	font-weight: 600;
}
/* Mobile menu toggle button */
.menu-toggle {
	display: none;
	cursor: pointer;
}
/* Mobile Menu - slide-in effect */
.menu.active {
	display: block;
	z-index: 1;
}
#manual-entry #barcode-input {
	width: 100%;
}
.add-barcode {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
	padding: 16px 20px !important;
	position: absolute;
	right: 0;
}
.add-product-btn, .btn, .menu-item {
	font-weight: 500;
	text-decoration: none;
	border: none;
	padding: 12px 20px;
	border-radius: 5px;
	font-size: 16px;
	display: inline-block;
}
.add-product-btn {
	font-weight: 600;
	border-radius: 100px;
	padding: 8px 20px;
}
.add-product-btn,.btn,.pagination a.active {
	background-color: var(--primary-color);
	color: #fff;
	box-shadow: none;
}
.pagination {
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.pagination a {
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	font-weight: 500;
	border-radius: 5px;
	color: #888;
	box-shadow: 0 0 0px 1px #ddd;
}
.pagination a:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}
.pagination .active {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: none;
}
.pagination .prev, .pagination .next {
    width: auto;
    padding: 0 10px;
    font-size: 15px;
}
.pagination span {
    padding: 6px;
    color: #ddd;
}
.table-orders {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}
.table-orders .table-header,.table-orders .table-row {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr 1fr 1fr 2fr;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	align-items: center;
	text-align: center;
}
.table-orders .table-header {
	background-color: #f4f4f4;
	font-weight: bold;
	text-transform: uppercase;
}
.table-orders .table-row:nth-child(even) {
	background: #fafafa;
}
.product-grid {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	flex-direction: column;
}
.product-box {
	display: flex;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px 1px rgb(0 0 0 / 10%);
	padding: 10px;
	gap: 20px;
	align-items: center;
}
.product-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 32%;
}
.product-header img {
	width: 70px;
	height: 70px;
	border-radius: 5%;
	margin-right: 15px;
	object-fit: cover;
}
.product-title {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	text-decoration: none;
	flex-grow: 1;
	text-transform: capitalize;
}
.product-info {
	display: flex;
	justify-content: space-around;
	width: 20%;
	align-items: center;
}
.product-price {
	font-size: 18px;
	color: #39b4c7;
	font-weight: 700;
}
.barcode-number {
	width: 15%;
}
.product-status {
	width: 10%;
	font-size: 14px;
	color: #888;
	display: flex;
	align-items: center;
}
.product-status[data-status="1"] {
	color: #10a257;
}
.product-status i {
	margin-right: 5px;
}
.btn.statusProduct {
	background-color: #39b4c7;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	margin-top: 15px;
	display: block;
	width: 100%;
}
.btn.statusProduct[data-status="0"] {
	background: #fff;
	color: #888;
	border: 1px solid #ddd;
}
.btn.statusProduct:hover {
	background-color: #2796a7;
	color: white;
	border: none;
}
/* Orders Grid */
.orders-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 2fr);
}
.order-card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 4px 1px rgb(0 0 0 / 10%);
}
.order-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0px 15px #dfe0e4;
}
.box-shadow {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 4px 1px rgb(0 0 0 / 10%);
	padding: 20px;
}
.order-card-header, .order-card-footer {
	font-size: 15px;
	border-bottom: 1px solid #eaf0f6;
	text-align: center;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.order-item-p {
	padding: 10px 20px;
}
.order-product-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.order-product-item {
	display: flex;
	padding: 8px 0;
	border-bottom: 1px solid #f1f1f1;
	justify-content: space-between;
	align-items: center;
}
.order-product-item:last-child {
	border-bottom: none;
}
.product-name {
	font-size: 16px;
	color: #000;
	width: 70%;
    text-align: center;
    text-transform: capitalize;
}
.order-p-price {
	font-size: 16px;
	color: var(--text-color);
	font-weight: 500;
	text-align: right;
}
.order-summary {
	border-top: 2px solid #f4f7fa;
	padding: 20px;
}
.order-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 16px;
	border-bottom: 1px solid #f4f7fa;
}
.order-item:last-child {
	border: none;
}
.total-price {
	font-weight: bold;
	color: var(--primary-color);
}
.paid-amount {
	color: var(--text-color);
	font-weight: 500;
}
.order-date {
	font-weight: normal;
	color: var(--text-color);
}
.order-date-time {
	color: var(--text-color);
	font-size: 15px;
}
.order-date-time span:first-child {
	margin-right: 10px;
}
.order-date-time i {
	color: #9aa4b8;
	margin-right: 5px;
}
.filter-form {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	align-items: center;
	justify-content: flex-end;
}
.total-boxes {
	display: flex;
	gap: 20px;
}
.total-box {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	font-size: 1.2rem;
	text-align: center;
}
.total-box h3 {
	font-size: 22px;
    font-weight: 500;
}
.total-box strong {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 24px;
}
/* Chart Container */
.chart-container {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin: 20px auto;
}
canvas {
	max-height: 400px;
}
.filter-buttons {
	margin: 20px 0;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(5, 1fr);
}
.filter-buttons .btn {
	padding: 15px;
	color: var(--text-color);
	border: 1px solid #ddd;
	background-color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	margin: 0;
}
.filter-buttons .btn.active,.filter-buttons .btn:hover {
	background-color: var(--primary-color);
	color: #fff;
	border: 1px solid var(--primary-color);
}
#scanner-container {
	border-radius: 10px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	overflow: hidden;
	background: #000;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 30vh;
	position: relative;
}
#scanner-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sticky-checkout {
	position: sticky;
	bottom: 0;
	width: 100%;
	background-color: #3159c5;
	padding: 20px;
	color: #fff;
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	z-index: 10;
	margin-top: 20px;
}
.total-container {
	width: 940px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#discount-section, #change-section {
	width: 100%;
	position: relative;
}
#discount-section input, #change-section input {
	width: 100%;
	margin: 0;
}
#total {
	display: flex;
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	align-items: center;
}
#reset-btn, #print-btn {
	background: #fff;
	color: #345cc2;
}
#reset-btn:hover, #print-btn:hover {
    opacity: 0.9;
}
.discount-paid {
	display: flex;
	justify-content: space-between;
	gap: 20px
}
.right-porcent, .right-dh {
	width: 50px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 50px;
	background: #fff;
	border: 1px solid #ccc;
	color: #345cc2;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	position: absolute;
	right: 0;
}
.save-reset-btn {
	width: 70%;
	text-align: right;
	display: flex;
	gap: 10px
}
#save-order-btn {
	width: 100%;
	margin-right: 0;
}
#save-order-btn:hover {
    opacity: 0.9;
}
#total-amount {
	font-size: 28px;
	background: #4b70d0;
	padding: 5px 15px;
	margin-right: 20px;
	border-radius: 5px;
}
#rest-to-pay {
	font-weight: 600;
	color: #32d97c;
}
.added-products-table, .table {
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
	margin: 20px 0;
}
.added-products-table tr, .table tr {
	background: #fff;
}
.added-products-table tr:nth-child(2n), .table tr:nth-child(2n) {
	background: #f4f7fa;
}
.added-products-table tr th, .table tr th {
	padding: 10px 15px;
	text-align: center;
	background: #f4f7fa;
	font-weight: 600;
}
.added-products-table tr td, .table tr td {
	padding: 10px 15px;
	text-align: center;
	text-transform: capitalize;
}
.quantity {
	width: 70px;
	margin: 0;
}
#alert-msg {
	display: none;
	position: fixed;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(-150%);
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
	width: 300px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 9999;
}
.close-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 20px;
	background: #f4f7fa;
	border: none;
	color: #345cc2;
	cursor: pointer;
}
#labelsPrint {
	width: 21cm;
	height: 29.7cm;
	margin: 20px auto;
}
.labels {
	display: flex;
	gap: 0;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
}
.label-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.label {
	width: 4cm;
	height: 2.5cm;
	box-sizing: border-box;
	border: 1px dashed #ddd;
	text-align: center;
	overflow: hidden;
	display: flex;
	margin-right: -1px;
	margin-bottom: -1px;
}
.label h4 {
	margin: 0;
	padding: 5px;
	font-size: 15px;
	font-weight: 500;
	height: 44px;
	text-align: start;
	line-height: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: capitalize;
}
.label-price {
	margin: 0;
	font-weight: 700;
	font-size: 50px;
	position: relative;
}
.label .promo-price {
	font-weight: 700;
    margin: 0;
    width: 100%;
    text-align: right;
    font-size: 25px;
    margin-top: -10px;
    line-height: 20px;
}
.label .barcode {
	font-family: 'Libre Barcode 128', cursive;
	font-size: 30px;
	margin: 0;
	line-height: 4px;
	margin-top: 13px;
}
.barcode-numbers {
	margin: 0;
	font-size: 11px;
}
.lb-price {
	background: #fff;
    color: #000;
    margin: 5px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    justify-content: space-evenly;
}
.lb-title-price {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.promo .lb-price {
	justify-content: space-between;
	gap: 5px;
}
.promo .label-price {
	font-size: 15px;
    font-weight: 500;
    text-decoration: line-through;
    line-height: 16px;
}
.small-dh {
	vertical-align: super;
    font-size: 13px;
}
.lb-name-qrcode {
}
.lb-qrcode img {
	width: 2.2cm;
	height: 2.2cm;
	margin: 5px;
}
.addp-menu {
	display: flex;
	align-items: center;
}
.product-actions {
	width: 12%;
	display: flex;
	gap: 10px;
	align-items: center;
	margin-right: 10px;
}
.product-actions button, .editProduct {
	border: 1px solid #ddd;
	background: #fff;
	color: #b2b4b9;
	padding: 0 10px;
	cursor: pointer;
	border-radius: 5px;
	width: 100%;
	height: 37px;
    font-size: 15px;
    text-align: center;
    line-height: 37px;
}
.product-actions button:hover, .editProduct:hover {
	background: #f4f7fa;
}
.promo-icon, .no-promo-icon {
	width: 8%;
	display: flex;
	gap: 5px;
	background-color: #f60049;
	color: white;
	padding: 4px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	align-items: center;
	justify-content: center;
}
.no-promo-icon {
	background-color: #ddd;
}
.old-price {
	text-decoration: line-through;
	color: gray;
	font-size: 16px;
	font-weight: 600;
	margin-right: 5px;
	display: block;
	text-align: center;
}
.chk-delete-btn, .delete-order, .delete-charge, .note-delete {
	display: inline-block;
	border: 1px solid #ddd;
	color: var(--text-color);
	font-size: 16px;
	cursor: pointer;
	background: #ffffff;
	width: 35px;
	height: 35px;
	border-radius: 5px;
	line-height: 35px;
}
.chk-delete-btn:hover, .delete-order:hover, .delete-charge:hover, .note-delete: hover {
	background: #f4f7fa;
}
.notifications {
	position: relative;
	margin-right: 26px;
}
.notifications:hover {
	opacity: .7;
}
.notification-icon {
	color: var(--secondary-color);
	font-size: 26px;
	position: relative;
}
.badge {
	width: 15px;
	height: 15px;
	background: #f30f4d;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	line-height: 15px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	top: -5px;
	right: -10px;
	display: none;
}
.quantity-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
}
.quantity-wrapper .btn-qty {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 8px;
	border: 1px solid #ccc;
	background: #fff;
	color: #000;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}
.quantity-wrapper .btn-qty:hover {
	background-color: #f4f7fa;
}
.quantity-wrapper .quantity {
	width: 50px;
	text-align: center;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 5px;
}
.border-btn {
	border: 1px solid #ddd;
}
.login-form, .signup-form {
	width: 500px;
	box-shadow: 0 0 5px #ddd;
	border-radius: 16px;
	padding: 40px;
	margin: 40px auto;
}
.login-form input, .login-form button, .signup-form input, .signup-form button {
	width: 100%;
}
.form-title {
	text-align: center;
	margin-top: 0;
}
.ls-btns {
	display: flex;
	gap: 10px;
}
.ls-btns a {
	margin: 0;
}
/* Tooltip Styling */
.tooltip {
	position: absolute;
	background-color: #fff;
	box-shadow: 0 0 10px #ddd;
	color: var(--text-color);
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 14px;
	display: none;
	white-space: nowrap;
	z-index: 1000;
}
.filter-section {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.filter-form select {
	width: 180px !important;
}
.filter-section input, #addChargeForm input {
	margin: 0;
	width: 100%;
}
#addChargeForm {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	padding: 30px 20px;
	margin-bottom: 20px;
}
/* Style for the menu item group */
.menu-item-group {
	position: relative;
}
.menu-item-group .submenu {
	display: none;
	position: absolute;
	top: 96%;
	left: 0;
	background-color: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	min-width: 150px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	border-radius: 5px;
	z-index: 11;
}
.menu-item-group i {
	font-size: 12px;
}
.menu-item-group:hover .submenu {
	display: block;
	opacity: 1;
	visibility: visible;
}
.submenu-item {
	padding: 10px 12px;
	display: block;
	color: var(--text-color);
	text-decoration: none;
}
.submenu-item:hover {
	background-color: #f4f7fa;
}
.dropdown-list {
	max-height: 200px;
	overflow-y: auto;
	position: absolute;
	width: 100%;
	background-color: white;
	z-index: 10;
	top: 48px;
	border-radius: 5px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	border: 1px solid #cccccc;
	display: none;
}
.dropdown-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #e9ebed;
	text-transform: capitalize;
	display: flex;
    align-items: center;
    gap:  10px;
}
.dropdown-item img {
	border-radius: 3px;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
	background-color: #f1f1f1;
}
.deconexion {
    display: none;
}
#namep-input {
    width: 100%;
}
.clear-icon {
    position: absolute;
    right: 14px;
    top: 33%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 32px;
    color: #666;
    display: none;
}
.input-container input:not(:placeholder-shown) + .clear-icon {
    display: inline;
}
.p-stock {
	display: block;
    font-size: 13px;
    color: #009688;
    margin-bottom: 3px;
}
.delete_by_product {
	font-size: 16px;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 3px;
    margin-left: 8px;
    color: #697074;
    cursor: pointer;
}
.success-message {
    color: green;
    font-weight: bold;
}
.error-message {
    color: red;
    font-weight: bold;
}
.total-row {
    font-weight: bold;
    background-color: #f5f5f5;
}
#total-label {
	font-size: 24px;
}
.status-en_attente { color: #FFA500; font-weight: bold; }
        .status-livre { color: #4CAF50; font-weight: bold; }
        
        .status-toggle {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .status-toggle input { 
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #FFA500;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #4CAF50;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
.add-note-form {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.add-note-form input {
    margin: 0;
    width: 100%;
}
#notes {
	width: 309px;
}
.change-display {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.change-display h4 {
    margin-bottom: 10px;
    color: #345cc2;
    font-size: 20px;
}
.change-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.denomination {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    gap: 10px;
    justify-content: center;
}
.denomination img {
    width: 150px;
    height: 60px;
    object-fit: contain;
}
.denomination span {
    font-size: 30px;
    color: #41b4c6;
    font-weight: 600;
}
.filter-container {
	    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-container #search-input {
	width: 300px;
	margin: 0;
}	
.clear-search {
	    width: 55px;
    height: 55px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.product-category {
	font-size: 14px;
}





