:root {
  --font-family-inter: 'Inter', sans-serif;
  --text-rgb-93-93-93: rgba(93, 93, 93, 1);
  --sidebar-width: 265px;
  --blue-primary: #1342B7;
  --blue-dark: #061B51;
}

body {
	font-family: 'Inter', sans-serif;
	padding: 0;
	margin: 0;
	background-color: #ffffff;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

#sidebarMenu {
	width: var(--sidebar-width) !important;
	min-width: var(--sidebar-width) !important;
	background-color: #ffffff !important;
	border-right: 1px solid #e5e7eb !important;
	position: sticky;
	top: 0;
	overflow-y: auto;
	flex-shrink: 0;
}

nav#sidebarMenu[style] {
	width: var(--sidebar-width) !important;
	min-width: var(--sidebar-width) !important;
}

/* Sidebar inner flex container */
#sidebarMenu > .d-flex {
	min-height: unset;
}

/* Logo area — generous top/bottom padding */
.sidebar-logo {
	padding: 36px 16px 28px 16px;
	text-align: center;
}

.sidebar-logo a {
	display: inline-block;
}

.sidebar-logo img {
	max-width: 185px;
}

/* Part Inquiry button */
.btn-part-inquiry {
	background-color: var(--blue-primary) !important;
	color: white !important;
	border-radius: 30px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	padding: 10px 16px !important;
	min-height: unset !important;
	min-width: unset !important;
	width: calc(100% - 32px);
	margin: 0 16px 20px 16px;
	display: block;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-part-inquiry:hover {
	background-color: #0f35a0 !important;
	color: white !important;
}

/* Nav links */
ul.nav.flex-column {
	padding-top: 0 !important;
}

.nav-link {
	color: #5D5D5D !important;
	font-weight: 600;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 6px;
	margin: 2px 8px;
	line-height: 1.3;
}

.nav-link:hover {
	background-color: #f0f4ff;
	color: var(--blue-primary) !important;
}

.nav-link.active {
	background-color: var(--blue-primary) !important;
	color: white !important;
	border-radius: 6px;
}

.nav-link.active i {
	background-color: white !important;
}

/* Sidebar bottom user/logout row — pinned to bottom with breathing room */
.sidebar-bottom {
	padding: 20px 16px 28px 16px;
	border-top: 1px solid #e5e7eb;
	margin-top: auto;
}

.item-logout {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #5D5D5D;
}

.item-logout .nav-link {
	padding: 0;
	margin: 0;
	min-width: unset;
}

/* ============================================================
   TOP SEARCH BAR
   ============================================================ */

.search-container {
	position: relative;
	width: 100%;
}

.search-input {
	height: 44px;
	border-radius: 0;
	padding-left: 40px;
	border: none;
	color: #9F9F9F;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	background: transparent;
}

.search-input:focus {
	outline: none;
	box-shadow: none;
}

.search-icon {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	pointer-events: none;
	display: block;
}

.topbar-cart, .topbar-balance {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #5D5D5D;
	line-height: 1.3;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */

main.flex-grow-1 {
	background-color: #ffffff;
	min-width: 0;
}

.p-4 > .container-fluid {
	padding: 0 !important;
}

h2 {
	font-size: 28px !important;
	font-weight: 700 !important;
	color: #5D5D5D !important;
}

h3 {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #1E1E1E !important;
}

.text16 {
	font-size: 15px !important;
	font-weight: normal !important;
	color: #1E1E1E !important;
}

/* ============================================================
   SEARCH BY ROW
   ============================================================ */

.search-by-label {
	font-size: 22px;
	font-weight: 700;
	color: #1E1E1E;
	white-space: nowrap;
}

.search-by-input-wrap {
	position: relative;
	flex: 1;
	min-width: 200px;
	max-width: 400px;
}

.search-by-input-wrap input[type="text"] {
	height: 44px !important;
	border-radius: 30px !important;
	padding-left: 40px;
	border: 1px solid #d1d5db !important;
	font-size: 15px;
	font-weight: 400;
	color: #5D5D5D;
	width: 100%;
}

.search-by-submit {
	width: 40px;
	height: 40px;
	border-radius: 50% !important;
	background-color: #5D5D5D !important;
	border-color: #5D5D5D !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	min-width: unset !important;
	min-height: unset !important;
	flex-shrink: 0;
}

.search-by-submit:hover {
	background-color: var(--blue-primary) !important;
	border-color: var(--blue-primary) !important;
}

/* Filter row */
.filter-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.filter-row .select2-container--default .select2-selection--single {
	height: 40px !important;
	border-radius: 20px !important;
}

.filter-row .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px !important;
}

.filter-row input[type="text"],
.filter-row input[name="periood"] {
	border-radius: 20px !important;
	border: 1px solid #d1d5db !important;
	font-size: 14px;
	padding: 6px 14px;
	height: 40px !important;
}

/* ============================================================
   ACTION ICON BUTTONS
   ============================================================ */

.btn-icon-circle {
	width: 38px;
	height: 38px;
	border-radius: 50% !important;
	background-color: var(--blue-primary) !important;
	border-color: var(--blue-primary) !important;
	color: white !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	min-width: unset !important;
	min-height: unset !important;
	font-size: 15px;
	flex-shrink: 0;
}

.btn-icon-circle:hover {
	background-color: #0f35a0 !important;
	border-color: #0f35a0 !important;
}

/* ============================================================
   DATATABLES
   ============================================================ */

/* Hide the default DataTables toolbar (search box, length menu) */
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dt-buttons {
	display: none !important;
}

/* Plain text paging — Previous / 1 / Next */
.dataTables_wrapper .dataTables_paginate {
	margin-top: 16px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	background: none !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 4px 8px !important;
	min-width: unset !important;
	min-height: unset !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #5D5D5D !important;
	cursor: pointer;
	text-transform: none !important;
	line-height: 1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: var(--blue-primary) !important;
	background: none !important;
	border: none !important;
}

/* Current page — filled blue circle */
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background-color: var(--blue-primary) !important;
	color: #ffffff !important;
	border-radius: 50% !important;
	width: 28px !important;
	height: 28px !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-weight: 600 !important;
	border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
	color: #d1d5db !important;
	cursor: default;
	background: none !important;
}

table.dataTable {
	border-collapse: collapse !important;
	width: 100% !important;
}

table.dataTable thead th {
	font-size: 13px !important;
	font-weight: 600 !important;
	border-top: 1px solid #e5e7eb !important;
	border-bottom: 1px solid #e5e7eb !important;
	color: #5D5D5D;
	white-space: nowrap;
	padding: 8px 8px !important;
	background: #ffffff;
}

table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
	opacity: 0.4;
}

table.dataTable tbody td {
	font-size: 13px;
	vertical-align: middle;
	padding: 10px 8px !important;
	border: none !important;
}

table.dataTable tbody tr:nth-child(odd) td {
	background-color: #ffffff !important;
}

table.dataTable tbody tr:nth-child(even) td {
	background-color: #F7F7F7 !important;
}

table.dataTable tbody td.dataTables_empty,
table.dataTable tbody tr.odd td.dataTables_empty,
table.dataTable tbody tr.even td.dataTables_empty {
	background-color: #ffffff !important;
}

table.dataTable tbody tr:hover td {
	background-color: #f0f4ff !important;
}

/* Blue links in table — product codes */
table.dataTable tbody td a,
.table-link {
	color: var(--blue-primary) !important;
	font-weight: 600;
	text-decoration: none;
}

table.dataTable tbody td a:hover {
	text-decoration: underline;
}

/* Product code + name stacked cell */
.cell-product-code {
	font-weight: 600;
	color: var(--blue-primary);
	font-size: 13px;
	display: block;
	text-align: left;
}

.cell-product-name {
	font-size: 11px;
	color: #9F9F9F;
	font-weight: 400;
	display: block;
	line-height: 1.3;
	margin-top: 1px;
	text-align: left;
}

table.dataTable tbody td {
	text-align: left;
}

td.infokast {
	font-size: 13px !important;
	font-weight: 700;
	color: var(--blue-primary);
}

/* Right-align numeric columns */
.text-end, .text-right {
	text-align: right !important;
}

/* ============================================================
   STATUS BADGES
   ============================================================ */

.badge-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.badge-delivered  { color: #16a34a; border: 1.5px solid #16a34a; background: transparent; }
.badge-partially  { color: #2563eb; border: 1.5px solid #93c5fd; background: #eff6ff; }
.badge-ordered    { color: #92400e; border: 1.5px solid #fbbf24; background: #fefce8; }
.badge-cancelled  { color: #dc2626; border: 1.5px solid #dc2626; background: transparent; }
.badge-annulled   { color: #dc2626; border: 1.5px solid #dc2626; background: transparent; }
.badge-paid       { color: #16a34a; border: 1.5px solid #16a34a; background: transparent; }
.badge-unpaid     { color: #dc2626; border: 1.5px solid #dc2626; background: transparent; }
.badge-ok         { color: #16a34a; border: 1.5px solid #16a34a; background: transparent; }
.badge-start      { color: var(--blue-primary); border: 1.5px solid var(--blue-primary); background: transparent; }

/* Currency cell — € symbol muted, amount blue bold */
.cell-currency {
	color: var(--blue-primary);
	font-weight: 700;
	white-space: nowrap;
}
.cell-currency .curr-symbol {
	color: #9F9F9F;
	font-weight: 400;
	margin-right: 2px;
}

/* ============================================================
   FORMS & INPUTS
   ============================================================ */

.form-control {
	border-radius: 10px;
	height: 44px !important;
	font-size: 14px;
}

input[type="text"] {
	border-radius: 30px;
	height: 44px !important;
	border: 1px solid #d1d5db;
}

input[type="email"],
input[type="password"] {
	border-radius: 10px !important;
	height: 44px !important;
	border: 1px solid #d1d5db !important;
}

.form-select {
	border-radius: 30px !important;
	height: 44px !important;
}

/* Keep number inputs in table cells compact */
table input[type="number"] {
	height: 32px !important;
	min-width: 55px;
	border-radius: 6px !important;
	font-size: 13px;
	padding: 2px 4px;
	border: 1px solid #d1d5db !important;
}

input, select {
	min-width: 80px;
	height: 36px;
	border-radius: 8px;
	color: #5D5D5D;
	border: 1px solid #d1d5db;
	font-family: 'Inter';
	font-size: 14px;
	font-weight: 400;
	padding: 4px 10px;
}

.form-check-input {
	border-color: #2946bd !important;
}
.form-check-input:checked { border-color: #2946bd !important; }
.form-check-input:focus {
	border-color: #2946bd !important;
	box-shadow: 0 0 0 0.25rem rgba(41, 70, 189, 0.25);
}

/* ============================================================
   SELECT2
   ============================================================ */

.select2-container--default .select2-selection--single {
	border-radius: 30px !important;
	border: 1px solid #d1d5db !important;
	height: 44px !important;
	display: flex;
	align-items: center;
}

.select2-dropdown {
	border-radius: 12px !important;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.select2-search--dropdown .select2-search__field {
	border-radius: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 44px !important;
	padding-left: 14px;
	font-size: 14px;
	color: #5D5D5D;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
	top: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.select2-container {
	width: 100% !important;
	display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
	border-radius: 30px !important;
	text-transform: uppercase;
	font-weight: 600;
	padding: 8px 20px;
	font-size: 14px;
	font-family: 'Inter';
	min-height: 44px;
	min-width: 100px;
}

.btn-primary {
	background-color: var(--blue-primary) !important;
	border-color: var(--blue-primary) !important;
	color: white !important;
}

.btn-primary:hover {
	background-color: #0f35a0 !important;
	border-color: #0f35a0 !important;
}

.btn-white {
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	color: #5D5D5D;
}

.link {
	color: var(--blue-primary) !important;
	font-size: 14px;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */

#login_form .form-label {
	font-size: 14px !important;
	font-weight: 600 !important;
}

.login-info-card {
	border: 1px solid var(--blue-primary) !important;
	border-radius: 10px !important;
	margin-top: 24px;
}

.login-info-card li {
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #1E1E1E !important;
	opacity: 0.8 !important;
}

/* ============================================================
   REGISTER FORM
   ============================================================ */

#register_form .form-control {
	border-radius: 10px;
	height: 44px !important;
	border: 1px solid var(--blue-primary) !important;
}

#register_form .form-select {
	border-radius: 10px;
	height: 44px !important;
	border: 1px solid var(--blue-primary) !important;
}

/* ============================================================
   UPLOAD PRICELIST
   ============================================================ */

#feedback.alert-primary {
	border-radius: 10px;
	background-color: #e8eeff;
	border-color: #c0ccf5;
	color: var(--blue-primary);
	font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
	background-color: var(--blue-dark) !important;
	min-height: 120px;
	padding: 20px 0;
}

.footer-text {
	color: #FFFFFF;
	opacity: 0.7;
	font-size: 14px;
	margin-top: 8px;
}

.footer-link, .footer-link a {
	min-width: max-content;
	text-decoration: none !important;
	font-family: 'Inter';
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: #FFFFFF;
	display: inline;
	margin-right: 16px;
	float: right;
}

.footer-links {
	margin-top: 12px;
	margin-bottom: 12px;
}

/* ============================================================
   ICONS
   ============================================================ */

.icon-myorders {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/myorders.svg") no-repeat center; mask: url("img/myorders.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-home {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/home.svg") no-repeat center; mask: url("img/home.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-pendingparts {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/pendingparts.svg") no-repeat center; mask: url("img/pendingparts.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-purchaseorders {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/purchaseorders.svg") no-repeat center; mask: url("img/purchaseorders.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-uploadprielists {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/uploadprielists.svg") no-repeat center; mask: url("img/uploadprielists.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-myinvoices {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/myinvoices.svg") no-repeat center; mask: url("img/myinvoices.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-user {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/user.svg") no-repeat center; mask: url("img/user.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-exit {
	display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("img/exit.svg") no-repeat center; mask: url("img/exit.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-cart {
	display: inline-block; width: 20px; height: 20px;
	background-color: currentColor;
	-webkit-mask: url("img/cart.svg") no-repeat center; mask: url("img/cart.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-balance {
	display: inline-block; width: 20px; height: 20px;
	background-color: currentColor;
	-webkit-mask: url("img/balance.svg") no-repeat center; mask: url("img/balance.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-location {
	display: inline-block; width: 20px; height: 20px; margin-right: 4px;
	background-color: var(--blue-primary);
	-webkit-mask: url("img/location.svg") no-repeat center; mask: url("img/location.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-phone {
	display: inline-block; width: 20px; height: 20px; margin-right: 4px;
	background-color: var(--blue-primary);
	-webkit-mask: url("img/phone.svg") no-repeat center; mask: url("img/phone.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}
.icon-mail {
	display: inline-block; width: 20px; height: 20px; margin-right: 4px;
	background-color: var(--blue-primary);
	-webkit-mask: url("img/mail.svg") no-repeat center; mask: url("img/mail.svg") no-repeat center;
	-webkit-mask-size: contain; mask-size: contain;
}

/* ============================================================
   VAT TOGGLE
   ============================================================ */

.switch {
	position: relative; display: inline-block;
	width: 46px; height: 24px;
	vertical-align: middle; margin-left: 6px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
	position: absolute; cursor: pointer;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #e5e7eb; border: 2px solid #e5e7eb; transition: .3s;
}
.slider:before {
	position: absolute; content: "";
	height: 18px; width: 18px; left: 1px; bottom: 1px;
	background-color: white; transition: .3s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
input:checked + .slider { background-color: var(--blue-primary); border-color: var(--blue-primary); }
input:checked + .slider:before { transform: translateX(22px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* ============================================================
   MISC
   ============================================================ */

.raam { border: 1px solid #e5e7eb !important; }

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.75%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.bg-success {
	background-color: var(--blue-primary) !important;
	border: var(--blue-primary) !important;
}

.search-input-border {
	height: 44px; border-radius: 30px;
	padding-left: 40px; border: 1px solid #d1d5db !important;
	color: #9F9F9F; font-size: 15px; font-weight: 600;
}

/* Cart row highlight colors */
tr.probleem td { background-color: #fee2e2 !important; }
tr.probleem2 td { background-color: #fef9c3 !important; }

/* TOS checkbox in cart — fixed size, inline with text */
#divAgreeTerms {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
	max-width: 600px;
}

#divAgreeTerms #agreeTerms {
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	flex-shrink: 0 !important;
	margin: 3px 0 0 0 !important;
	cursor: pointer;
	border-radius: 4px !important;
}

/* DataTables empty message */
table.dataTable tbody td.dataTables_empty {
	text-align: center !important;
	padding: 40px 16px !important;
	color: #9F9F9F;
	font-size: 14px;
}

/* ============================================================
   MOBILE / RESPONSIVE
   ============================================================ */

/* Prevent page overflow from wide tables */
.dataTables_wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* DataTables Responsive — child row detail styling */
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
	background-color: var(--blue-primary) !important;
	border: none !important;
	box-shadow: none !important;
	width: 16px;
	height: 16px;
	line-height: 16px;
	font-size: 12px;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
	background-color: #5D5D5D !important;
}

/* Child row content */
table.dataTable > tbody > tr.child ul.dtr-details {
	font-size: 13px;
	padding: 8px 0;
}

table.dataTable > tbody > tr.child ul.dtr-details li {
	border-bottom: 1px solid #f3f4f6;
	padding: 6px 0;
}

table.dataTable > tbody > tr.child ul.dtr-details > li > span.dtr-title {
	font-weight: 600;
	color: #5D5D5D;
	min-width: 120px;
}

table.dataTable > tbody > tr.child ul.dtr-details > li > span.dtr-data {
	color: #1E1E1E;
}

/* On small screens, reduce table cell padding */
@media (max-width: 768px) {

	/* Main layout: remove sidebar gap on mobile */
	.container-fluid.px-0 > .d-flex {
		flex-direction: column;
	}

	/* Main content full width */
	main.flex-grow-1 {
		min-width: 0;
		width: 100%;
	}

	/* Content padding tighter on mobile */
	.p-4 {
		padding: 12px !important;
	}

	/* Filter rows stack vertically */
	.filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-row .select2-container,
	.filter-row input[type="text"],
	.filter-row input[name="periood"] {
		max-width: 100% !important;
		width: 100% !important;
	}

	/* Table cells smaller on mobile */
	table.dataTable tbody td {
		padding: 8px 6px !important;
		font-size: 12px;
	}

	table.dataTable thead th {
		font-size: 12px !important;
		padding: 6px 6px !important;
	}

	/* Info card panels stack */
	.d-flex.align-items-center.gap-4 {
		flex-wrap: wrap;
		gap: 12px !important;
	}

	/* Topbar: stack cart/balance on very small screens */
	.topbar-cart span,
	.topbar-balance span {
		font-size: 11px;
	}

	/* Paging on mobile */
	.dataTables_wrapper .dataTables_paginate {
		justify-content: center;
	}

	/* Search-by row on mobile */
	.search-by-label {
		font-size: 18px;
	}

	.search-by-input-wrap {
		max-width: 100% !important;
		width: 100%;
	}
}
