* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: var(--background);
  color: var(--fontColor);
}

/* Native <select>: OS often paints white while inheriting light text — force theme colors */
select {
  background-color: var(--card);
  color: var(--fontColor);
}
select option,
select optgroup {
  background-color: var(--card);
  color: var(--fontColor);
}

.main-container{
  display: flex;
  flex-direction: column;
}

/* begin error */
.error-message {
  padding:10px;
  background: none;
  color: #d6001c;
}
/* end error */

.red{
  color: red !important;
}

.green{
  color: var(--green) !important;
}

.yellow{
  color: var(--yellow) !important;
}

.blue{
  color: var(--blue) !important;
}

.main-con{
  margin-top: 30px;
}
.card{
  background: var(--card);
  border-radius: 5px;
  padding: 50px;
  box-shadow: var(--boxShadow);
  margin-bottom: 20px;
}

.card-order{
  background: var(--card);
  border-radius: 5px;
  padding: 50px;
  box-shadow: var(--boxShadow);
  margin-bottom: 20px;
  width: 700px;
}

.card-a{
  background: var(--card);
  border-radius: 5px;
  padding: 50px;
  box-shadow: var(--boxShadow);
  margin-bottom: 20px;
  transition: 0.2s;
}

.card-a:hover{
  box-shadow: var(--boxShadowHover);
}

.card-s{
  background: var(--card);
  border-radius: 5px;
  padding: 30px;
  box-shadow: 5px 5px 10px #16161b;
  margin-bottom: 20px;
}
.c-row{
  margin-right: 20px;
}
.c-last{
  margin-right: 0px;
}

.tilte-card{
  font-size: 25px;
  font-weight: 600;
  border-bottom: solid 2px var(--color);
}

.break-card{
  height: 30px;
}

h1{
  color: var(--fontColor);
}
/* Header/logo Title */
/* .header {
  text-align: center;
  background: #1abc9c;
  color: var(--fontColor);
} */

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: var(--card);
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: var(--fontColor);
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

.right{
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: var(--fontColor);;
  color: var(--background);
}

#active-page{
  background-color: var(--fontColor);
  color: var(--background);
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 10%; /* IE10 */
  flex: 10%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: var(--background);
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.main-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.main-table th,
.main-table td {
  border: none; /* Remove border */
  padding: 8px;
  text-align: left;
  color: var(--fontColor);

}

.main-table th {
  background-color: var(--card);
}

.main-table tr:nth-child(even) {
  background-color: var(--card);
}

.main-table tr:hover {
  background-color: var(--tableHoverBG);
}

.main-table th:nth-child(-n+2) {
  font-weight: 800;
}

.main-btn-link:link{
  background: var(--color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--color-on, #0f1c1a);
  transition: 0.2s;
}

.main-btn-link:visited {
  background:  var(--color);
  color: var(--color-on, #0f1c1a);
}

.main-btn-link:hover {
  background: var(--hover);
}

.main-btn{
  background: var(--color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--color-on, #0f1c1a);
  transition: 0.2s;
  border: none;
  cursor: pointer;
}

.main-red-btn {
  background: #c43535;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: 0.2s;
  border: none;
  cursor: pointer;
  /* margin-bottom: 20px; */
}

.main-red-btn:hover {
  background: #af3434;
}

.main-btn:hover {
  background: var(--hover);
}

.main-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--hover);
}

.column{
  display: flex;
  flex-direction: column;
}

.center-container{
  display: flex;
  align-items: center;
  justify-content: center;
}


.row-reads{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.pages-buttons{
  display: flex;
  flex-direction: row;
  list-style: none;
}

.pages-buttons li{
  margin: 5px;
}


.pages-buttons a:link{
  text-decoration: none;
  color: var(--fontColor);;
  font-size: 30px;
  transition: 0.2s;
  padding: 10px;

}

.pages-buttons a:visited{
  color: var(--fontColor);;
}

.pages-buttons a:hover{
  color: var(--color-strong);
}

.pages-buttons a.is-active {
  color: var(--hover);
  text-shadow: 0px 0px 10px var(--hover);
}

.main-text-input{
  padding: 10px;
  width: 300px;
}

.main-submit-button{
  padding: 10px;
}


.createformcontainer{
  display: flex;
  flex-direction: column;
}

.createformcontainer input[type="text"] {
  width: 300px;
  margin: 10px;
  padding: 10px;
}


.plusimg{
  transition: 0.5s;
}
.plusimg:hover{
  width: 55px;
}


.sub-item-selection{
  width: 100%;
  padding: 15px;
  border: none;

}


/* cursor:pointer; */


/* ======================================================================================== */

.textarea-description, .textarea-title{
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--textAreaBG);
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
  border-radius: 5px;
}

.textarea-title{
  margin-bottom: 10px;
}


/* Container for the entire search bar and checkboxes */
.search-container {
  margin-bottom: 10px;
}

.search-bar {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 16px;
  color: #333;
}

.checkbox-container {
  max-height: 300px;  /* Set max height and enable scrolling */
  overflow-y: auto;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9;
}

/* Each checkbox and its label container */
.checkbox-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  margin: 5px 0;
}

/* Style for the checkbox input itself */
.chunk-checkbox {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Label styling for each chunk */
.checkbox-item label {
  font-size: 16px;
  color: #333;
}

/* Hover effect on the checkbox items */
.checkbox-item:hover {
  background-color: #e6e6e6;
  border-radius: 5px;
  padding: 5px;
}

/* Additional styling for chunk items */
.chunk-checkbox + label {
  background-color: #f9f9f9;
  padding: 5px;
  border-radius: 5px;
  width: 90%;
}

/* Apply green background to chunk recommendations */
.recommendation-item {
  background-color: rgb(190, 255, 190);  /* Always green background */
  padding: 5px;
  border-radius: 5px;
}

/* Other common styles for checkboxes */
.checkbox-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
}


/* ======================================================================================== */
/* Your general table style for all tables */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Your specific style for tables with the class 'table-settings-account' */
.table-settings-account {
  width: 100%;
  border-collapse: collapse;
}


/* Styles for table cells within 'table-settings-account' */
.table-settings-account th,
.table-settings-account td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid var(--card);
}

/* Hover effect for rows within 'table-settings-account' */
.table-settings-account tr:hover {
  background-color: var(--tableHoverBG);
}

/* Styling for input[type="text"] within 'table-settings-account' */
.table-settings-account input[type="text"], .table-settings-account  input[type="email"] , .table-settings-account  textarea {
  background: var(--card);
  border: none;
  border-bottom: solid 1px var(--color);
  padding: 5px;
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
  width: 250px;
  margin-right: 20px;
}

.input-small-width{
  width: 150px !important;
}

/* /////////////////////////////////////////////////////////////////////////////////////// */


.table-pricing {
  width: 100%;
  border-collapse: collapse;
}

.table-pricing tr:hover {
  background-color: var(--tableHoverBG);
}

.table-pricing th,
.table-pricing td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid var(--card);
}

/* .table-pricing th {
  background-color: var(--card);
} */

/* /////////////////////////////////////////////////////////////////////////////////////// */

.main_table-uncoloured {
  width: 100%;
  border-collapse: collapse;
}

.main_table-uncoloured tr:hover {
  background-color: var(--tableHoverBG);
}

.main_table-uncoloured th,
.main_table-uncoloured td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid var(--card);
}

/* .table-pricing th {
  background-color: var(--card);
} */






/* Your specific style for tables with the class 'table-acctek' */
.table-acctek {
  width: 100%;
  border-collapse: collapse;
}

/* Styles for table cells within 'table-acctek' */
.table-acctek th,
.table-acctek td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid var(--card);
}

/* Hover effect for rows within 'table-acctek' */
.table-acctek tr:hover {
  background-color: var(--tableHoverBG);
}

/* Styling for input[type="text"] and input[type="password"] within 'table-acctek' */
.table-acctek input[type="password"],
.table-acctek input[type="text"] {
  background: var(--card);
  border: none;
  border-bottom: solid 1px var(--color);
  padding: 5px;
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
  width: 50%;
}
/* /////////////////////////////////////////////////////////////////////////////////////// */


/* Your specific style for tables with the class 'table-product-content' */
.table-product-content {
  width: 100%;
  border-collapse: collapse;
}

/* Styles for table cells within 'table-product-content' */
.table-product-content th,
.table-product-content td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid var(--card);
}

/* Hover effect for rows within 'table-product-content' */
.table-product-content tr:hover {
  background-color: var(--tableHoverBG);
}

/* Styling for input[type="text"] within 'table-product-content' */
.table-product-content textarea,
.table-product-content input[type="text"],
.table-product-content input[type="number"] {

  background: var(--background);
  border: none;
  padding: 10px;
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
  width: 70%;
}

.table-product-content select {
  padding: 5px;
  /* margin-left: 20px; */
  min-width: 100px;
}

.div-defaultUnit {
  margin-left: 20px;
}


.padding{
  padding: 20px;
}

.margin-left{
  margin-left: 20px;
}

.select-dropdown{
  padding: 5px 20px;
  border: 1px solid var(--borderColor);
  background: var(--background);
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
  border-radius: 8px;
}

.select-dropdown:hover {
  cursor: pointer; /* Change to the desired cursor type, e.g., pointer, grab, etc. */
}

.dropdown-content{
  display: none;
  position: absolute;
  background-color: var(--fontColor);
  color: var(--background);
  min-width: 160px;
  max-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content>*>div{
  padding: 15px 10px;
  width: 100%;
}

.dropdown-content>*>div:hover{
  background-color: rgb(161, 161, 161);
}

.dropdown-content-display{
  display: block;
}


.tooltip{
  color: red;
}
/* ======================================================================================== */

.threehonderdpxheigth{
  height: 300px;
}


/* bolcomorder.php */
a.link-red, a.link-green, a.link-blue, a.link-yellow{
  transition: 0.2s;
  border: none;
  text-decoration: none;
}

a.link-red:hover, a.link-green:hover, a.link-blue:hover, a.link-yellow:hover{
  border: none;
}

a.link-red{
  color: #fb4537;
}

a.link-yellow{
  color: var(--yellow);
}

a.link-red:hover{
  color: #a82e25;
}

a.link-green{
  color: var(--color-strong);
}
a.link-green:hover{
  color: var(--hover);
}


a.link-blue{
  color: rgb(0, 119, 255);
}
a.link-blue:hover{
  color: rgb(0, 98, 211);
}

a.bol-color:link{
  color: var(--bolColor);
  text-decoration: none;
}
  
a.bol-color:visited{
  color: var(--bolColor);
  text-decoration: none;
}

a.bol-color:hover{
  text-decoration: none;
}

a.amazon-color:link,
a.amazon-color:visited{
  color: var(--amazonColor);
  text-decoration: none;
}

a.aliexpress-color:link,
a.aliexpress-color:visited {
  color: #ff4747;
  text-decoration: none;
}

a.aliexpress-color:hover {
  color: #e03e3e;
  text-decoration: none;
}

a.kaufland-color:link,
a.kaufland-color:visited {
  color: #e30613;
  text-decoration: none;
}

a.kaufland-color:hover {
  color: #b8050f;
  text-decoration: none;
}

.kaufland-storefront-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kaufland-storefront-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--borderColor, rgba(20, 24, 31, 0.12));
  border-radius: 12px;
  background: var(--card, var(--background, #fff));
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.2;
}
.kaufland-storefront-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.kaufland-storefront-option:has(input:checked),
.kaufland-storefront-option--static {
  border-color: rgba(22, 163, 74, 0.38);
  background: rgba(22, 163, 74, 0.12);
}
.kaufland-storefront-option:has(input:focus-visible) {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}
.kaufland-storefront-option--static {
  cursor: default;
}
.kaufland-sf-flag {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(20, 24, 31, 0.12);
}
.kaufland-order-ship-to {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}
.kaufland-order-ship-to .kaufland-sf-flag {
  width: 22px;
  height: 16px;
}
.kaufland-sf-name {
  font-weight: 600;
}
.kaufland-sf-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: auto;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  opacity: 0;
}
.kaufland-sf-check::before {
  content: "";
  width: 8px;
  height: 4.5px;
  margin-top: -1px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.kaufland-storefront-option:has(input:checked) .kaufland-sf-check,
.kaufland-storefront-option--static .kaufland-sf-check {
  opacity: 1;
}
.kaufland-storefronts-change {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}
.kaufland-sf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.kaufland-sf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e30613;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.kaufland-sf-live {
  font-size: 0.72rem;
  opacity: 0.7;
}
.kaufland-sf-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 1.8rem;
  margin-top: 4px;
  padding: 0 8px;
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}
.kaufland-sf-count:hover {
  background: rgba(22, 163, 74, 0.2);
}
.kaufland-sf-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
}
.kaufland-sf-popup.show {
  display: flex;
}
.kaufland-sf-popup-card {
  background: var(--card, #fff);
  color: var(--fontColor, #333);
  width: min(420px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 18px 20px 16px;
}
.kaufland-sf-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.kaufland-sf-popup-head h3 {
  margin: 0;
  font-size: 1.05rem;
}
.kaufland-sf-popup-close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}
.kaufland-sf-popup-list {
  margin-bottom: 4px;
}

a.supplier-onbekend-link:link,
a.supplier-onbekend-link:visited {
  color: #5eb3e8;
  text-decoration: none;
}
a.supplier-onbekend-link:hover {
  color: #3d9ad4;
  text-decoration: none;
}
/* //////////////////////// */

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
/* .flex-container>* {
  margin: 10px;
} */

.image-con{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 10px;
}
.image-con img{
  max-width: 200px;
  max-height: 200px;
}

.image-con>*{
  margin-bottom: 20px;
}

.subitem-name {
  padding: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--fontColor);
  border-top: 1px solid var(--card);
}

.subitem-name a {
  text-decoration: none;
  color: inherit;
}

.subitem-name a:hover {
  color: var(--color-strong);
}

.whitebg{
  background-color: #ffffff;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whitebg img{
  max-width: 200px;
  max-height: 200px;
}

.img-table{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.img-table img{
  max-width: 40px;
  max-height: 40px;
}

.order-img-slot {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--body, #f3f4f6);
  border: 1px solid var(--borderColor, rgba(0,0,0,0.08));
}
.order-img-slot.is-empty,
.order-img-slot .order-img-empty {
  color: var(--fontColor, #64748b);
  opacity: 0.55;
  font-size: 0.75rem;
  font-weight: 600;
}
.order-img-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
}
.order-img-loader[hidden],
.order-img-slot .clear-link[hidden],
.order-img-slot .order-img-empty[hidden] {
  display: none !important;
}
.order-img-loader span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color, #7fd9b8);
  animation: order-table-img-dot 1s ease-in-out infinite;
}
.order-img-loader span:nth-child(2) { animation-delay: 0.15s; }
.order-img-loader span:nth-child(3) { animation-delay: 0.3s; }
.order-img-slot img {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.order-img-slot img.is-loaded {
  opacity: 1;
  transform: scale(1);
}
@keyframes order-table-img-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .order-img-loader span { animation: none; }
  .order-img-slot img {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.img-table-products{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: white;
}
.img-table-products img{
  max-width: 40px;
  max-height: 40px;
}

.table-copy-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0 2px;
  vertical-align: middle;
  line-height: 1;
  opacity: 0.85;
}
.table-copy-btn:hover {
  opacity: 1;
}
.table-copy-btn--copied {
  color: #22c55e;
}

.remove-restore-image{
  cursor: pointer;
}

.removedimg {
  transition: 0.2s;
  filter: brightness(15%);
}
.restoredimg {
  transition: 0.2s;
  filter: brightness(100%);
}

.equal-childs{
  width: 100%; /* Set the container width to 100% of the parent */
  display: flex; /* Use flexbox for layout */
}

.equal-childs>*{
  flex: 1; /* Each child div takes equal space */
  box-sizing: border-box; /* Include border in the width */
  text-align: center; /* Optional: Center the content */
  /* margin-right: 20px; */
}

/* Manager panel cards: equal height per row, min height so none look thin */
.row.equal-childs.manager-cards {
  align-items: stretch;
  /* Spacing between cards — do not rely on .c-row margin inside width:100% cards (first items looked “stuck”) */
  gap: 20px;
}
.row.equal-childs.manager-cards > .clear-link {
  display: flex;
  min-width: 200px;
  box-sizing: border-box;
  /* flex:1 from .equal-childs>*; with gap, share space without overlapping */
  flex: 1 1 200px;
}
.row.equal-childs.manager-cards .card-a {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  width: 100%;
  box-sizing: border-box;
  margin-right: 0;
}

.panel-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

.clear-link:link{
  text-decoration: none;
  color: var(--fontColor);
}
.clear-link:visited{
  text-decoration: none;
  color: var(--fontColor);
}

.effor-card{
  width: 600px;
}
.effor-card>*{
  margin-bottom: 30px;
}

.finance-item{
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.finance-item>*{
  padding: 5px;
}

.price-eff{
  font-size: 30px;
}

.sell-input{
  font-size: 30px;
  background: var(--background);
  color: var(--fontColor);
  border: none;
  border-bottom: solid 1px var(--color);
  text-align: center;
  width: 50%;
}

/* .delivery-options{
  font-size: 30px;
  background: none;
  color: #ddd;
  border: none;
  text-align: center;
  width: 50%;

}

.delivery-options option:checked {
  background-color: black;
  color: white;
} */

.euro{
  font-size: 20px;
}

.vast{
  color: #aaaaaa8f;
}



.images-overview-red, .images-overview-green, .images-overview-yellow{
  padding: 20px;
  font-size: 30px;

}

.images-overview-red{
  color: red;
}

.images-overview-green{
  color: green;
}

.images-overview-yellow{
  color: yellow;
}

/* ////////////////////////////////////////////////////////// */
/* slider: */

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 21px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #777777;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.checkbox-slider:checked + .slider {
  background-color: var(--color);
}

.checkbox-slider:focus + .slider {
  box-shadow: 0 0 1px var(--color);
}

.checkbox-slider:checked + .slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* ////////////////////////////////////////////////////////// */


/* Style the top navigation bar */
.orders-navbar {
  overflow: hidden;
}

/* Style the navigation bar links */
.orders-navbar a {
  float: left;
  display: block;
  color: var(--fontColor);
  text-align: center;
  padding: 12px 18px;
  margin-right: 5px;
  text-decoration: none;
  background: var(--card);
  border: solid 2px var(--card);
  transition: 0.2s;
  border-radius: 50px;
}

.orders-navbar a:hover {
  color: var(--color-strong);
}
#active-coll{
  border: solid 2px var(--color);
}


.table-btns-con{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hidden {
  display: none;
}

/* Order Info Box - Helpful instruction */
.order-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid var(--color);
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.info-content {
  color: var(--fontColor);
  font-size: 14px;
  line-height: 1.5;
}

.info-content strong {
  color: var(--color-strong);
  font-weight: 600;
}

/* Order Status Actions - Improved UX */
.order-status-actions {
  position: sticky;
  bottom: 0;
  background: var(--card);
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color);
  z-index: 100;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.action-instruction {
  color: var(--fontColor);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  padding: 10px;
  background: var(--background);
  border-radius: 5px;
  border-left: 4px solid var(--color);
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.status-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.status-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.status-btn:active {
  transform: translateY(-1px);
}

.status-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.status-btn:hover::before {
  left: 100%;
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  font-size: 15px;
  font-weight: 600;
}

/* Specific button colors */
.status-btn-bought {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.status-btn-bought:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.status-btn-delivered {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.status-btn-delivered:hover {
  background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
}

.status-btn-tobuy {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.status-btn-tobuy:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.status-btn-intransit {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
}

.status-btn-intransit:hover {
  background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
}

/* Row selection visual feedback */
.row-selected {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%) !important;
  box-shadow: inset 0 0 0 2px rgba(102, 126, 234, 0.5);
  transition: all 0.3s ease;
}

.row-selected td {
  color: var(--fontColor) !important;
  font-weight: 500;
}

.row-selected:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%) !important;
  box-shadow: inset 0 0 0 2px rgba(102, 126, 234, 0.7);
}

/* Vaste verwijder-balk bij productselectie (Bol pro + Kaufland kpro) */
.products-delete-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  background: var(--card, #fff);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.products-delete-bar:has(#submit-button-checkboxs:not(.hidden)) {
  display: flex;
}
.products-delete-bar.is-visible {
  display: flex;
}
.products-delete-bar .products-delete-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #dc2626;
  color: #fff;
}
.products-delete-bar .products-delete-btn:hover:not(:disabled) {
  background: #b91c1c;
}
.products-delete-bar .products-delete-btn.hidden {
  display: none !important;
}

/* Checkbox styling improvement */
.checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color);
  transition: transform 0.2s ease;
}

.checkbox:hover {
  transform: scale(1.2);
}

.checkbox:checked {
  transform: scale(1.1);
}

/* Quick Action Buttons in Table */
.order-quick-actions {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  padding: 0;
  position: relative;
}

.quick-action-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.quick-action-btn:active {
  transform: translateY(0) scale(1);
}

/* Specific button styles */
.btn-view {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-view:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-bought {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-bought:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-delivered {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.btn-delivered:hover {
  background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
}

.btn-tobuy {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.btn-tobuy:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.btn-intransit {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
}

.btn-intransit:hover {
  background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
}

/* Tooltip effect on hover */
.quick-action-btn::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.quick-action-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .order-status-actions {
    padding: 15px;
  }
  
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .status-btn {
    width: 100%;
    justify-content: center;
  }
  
  .action-instruction {
    font-size: 14px;
  }
  
  .order-quick-actions {
    gap: 3px;
  }
  
  .quick-action-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  /* Hide tooltip on mobile */
  .quick-action-btn::after {
    display: none;
  }
}

.attributes-dropdown{
  display: none;
  height: 600px;
  width: 400px;
  overflow-y: auto;
  background: #ddd;
  color: #16161b;
  position: relative;
  top: 20px;
}

.attributes-dropdown>div{
  padding: 10px;
}

.attributes-dropdown>div:hover{  
  background: #f1f1f1;
}


.sucess-msg{
  color: var(--green);
  padding: 20px;
  width: 100%;
}

.error-msg{
  color: var(--red);
  padding: 20px;
  width: 100%;
}

.Leave-session-link:link{
  text-decoration: none;
  color: rgb(0, 0, 0);
  padding: 10px;
  background: #adff76;
  width: 100%;
}
.Leave-session-link:visited{
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.tr-active-session{
  color: var(--color-strong);;
}


.card-links{
  width: 100%;
  justify-content: space-evenly;
  display: flex;
}









  /* border: none; */
  /* padding: 10px; */
  /* box-shadow: var(--inputShadow); */
  /* width: 70%; */
/* 


.rich-text-container {
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.editor-toolbar {
  padding: 5px;
  background: var(--background);
  border: none;
  border-bottom: 1px solid #ddd;
  box-shadow: var(--inputShadow);
}
.toolbar-btn {
  padding: 3px 8px;
  margin: 0 1px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  
}
.toolbar-btn:hover {
  background: #e9e9e9;
}
.separator {
  margin: 0 5px;
  color: #999;
}
.rich-text-editor {
  
  min-height: 200px;
  padding: 8px;
  background: var(--background);
  box-shadow: var(--inputShadow);
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
}
.rich-text-editor:focus {
  outline: none;
  border-color: #666;
}

 */


 .rich-text-container {
  border: none;
  border-radius: 0;
  overflow: hidden;
  color: var(--fontColor);
  
}

.editor-toolbar {
  padding: 5px;
  background: var(--background);
  border: none;
  border-bottom: 1px solid #ddd;
  box-shadow: var(--inputShadow);

}
.toolbar-btn {
  padding: 3px 8px;
  margin: 0 1px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
}
.toolbar-btn:hover {
  background: #e9e9e9;
}
.separator {
  margin: 0 5px;
  color: #999;
}
.rich-text-editor {
  min-height: 200px;
  padding: 8px;
  background: var(--background);
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  -webkit-user-modify: read-write;
  box-shadow: var(--inputShadow);
}
.rich-text-editor:focus {
  outline: none;
  border-color: #666;
}
/* Disable spell check styling */
.rich-text-editor::-webkit-spelling-error {
  text-decoration: none;
}
.rich-text-editor::-webkit-grammar-error {
  text-decoration: none;
}
.rich-text-editor::-ms-spelling-error {
  text-decoration: none;
}
.rich-text-editor::spelling-error {
  text-decoration: none;
}





.green_border {
  border-bottom: 3px solid green;
}

.red_border {
  /* border: 1px solid red;
  border-bottom: 3px solid red; */
  box-shadow: 0 0 20px 1px red;

}

.yellow_border {
  box-shadow: 0 0 20px 1px #ffc107;
}

.orange_border {
  box-shadow: 0 0 20px 1px rgb(251, 255, 0);

  /* border: 1px solid rgb(251, 255, 0); */
  /* border-bottom: 3px solid rgb(251, 255, 0); */
}

.white_border {
  border: 1px solid white;
}











/* //////////////// */
/* news */
/* //////////////// */

/* Algemene stijl */
.news-content {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

/* Afbeeldingensectie */
.news-images {
  text-align: center;
}

.news-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.news-image-box {
  flex: 1;
  max-width: 45%;
  text-align: center;
  background: var(--card);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-image-box img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-benefits {
  font-weight: bold;
  color: #bac704;
  text-align: center;
  margin-top: 15px;
  font-size: 1.2em;
}

/* Activatie en kosten sectie */
.news-activation, .news-costs, .news-how, .news-gs1 {
  background: var(--card);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.news-activation img, .news-costs img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
  border-radius: 5px;
}

/* Nieuwe secties: Hoe werkt het? & GS1 registratie */
.news-how, .news-gs1 {
  background: var(--card);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-content h2 {
  color: #27ae60; /* Groen */
}


.news-how p, .news-gs1 p {
  font-size: 16px;
  line-height: 1.5;
}

.news-how strong, .news-gs1 strong {
  color: #e67e22;
}

/* Responsieve stijl voor kleinere schermen */
@media screen and (max-width: 768px) {
  .news-image-container {
    flex-direction: column;
  }

  .news-image-box {
    max-width: 100%;
  }

  .news-how, .news-gs1 {
    padding: 15px;
  }

  .news-how h2, .news-gs1 h2 {
    font-size: 20px;
  }

  .news-how p, .news-gs1 p {
    font-size: 14px;
  }
}

/* News Page Styles */
.news-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.news-card {
    background: var(--card);
    border-radius: 12px;
    box-shadow: var(--boxShadow);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--boxShadowHover);
}

.news-header {
    background: var(--card);
    padding: 1.5rem;
    border-bottom: 1px solid var(--color);
}

.news-badge {
    display: inline-block;
    background: var(--color);
    color: var(--color-on, #0f1c1a);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-header h1 {
    font-size: 1.75rem;
    color: var(--fontColor);
    margin: 0.5rem 0;
}

.news-subtitle {
    color: var(--fontColor);
    opacity: 0.7;
    font-size: 1rem;
    margin: 0;
}

.news-content {
    padding: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 8px;
    border: 1px solid var(--color);
}

.highlight-icon {
    font-size: 1.5rem;
}

.feature-details {
    margin: 1.5rem 0;
}

.feature-details h2 {
    font-size: 1.25rem;
    color: var(--fontColor);
    margin-bottom: 1rem;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fontColor);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.green { background: var(--green); }
.status-dot.red { background: var(--red); }
.status-dot.orange { background: var(--yellow); }

.feature-demo {
    margin: 1.5rem 0;
}

.feature-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: var(--boxShadow);
}

.image-caption {
    color: var(--fontColor);
    opacity: 0.7;
    font-size: 0.875rem;
    text-align: center;
}

.feature-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color);
}

.price-tag {
    display: inline-block;
    background: var(--green);
    color: var(--fontColor);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.setup-steps {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.setup-steps li {
    margin-bottom: 0.5rem;
    color: var(--fontColor);
}

.comparison-section {
    margin: 2rem 0;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.comparison-item {
    text-align: center;
}

.comparison-item h3 {
    color: var(--fontColor);
    margin-bottom: 0.5rem;
}

.comparison-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: var(--boxShadow);
}

.settings-preview {
    max-width: 300px;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: var(--boxShadow);
}

.pricing-info {
    background: var(--background);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--color);
}

.pricing-info h3 {
    color: var(--fontColor);
    margin-bottom: 0.5rem;
}

.tip {
    background: var(--yellow);
    color: var(--background);
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 500;
    box-shadow: var(--boxShadow);
}

.link-primary {
    color: var(--color-strong);
    text-decoration: none;
    font-weight: 500;
}

.link-primary:hover {
    color: var(--hover);
}

.success-message {
    display: inline-block;
    background: var(--green);
    color: var(--fontColor);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-container {
        padding: 0 1rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .news-header h1 {
        font-size: 1.5rem;
    }

    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--background);
    border-radius: 8px;
    border: 1px solid var(--color);
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-label {
    color: var(--fontColor);
    opacity: 0.7;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fontColor);
}

.price-value.highlight {
    color: var(--green);
    font-size: 2rem;
}


.link-active {
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
}

.link-active:hover {
  color: #0056b3;
  text-decoration: underline;
}

.filters-container {
  margin: 20px 0;
  padding: 20px;
  /* background-color: #f8f9fa; */
  border-radius: 8px;
  /* border: 1px solid #dee2e6; */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  /* background-color: #fff; */
  border-radius: 6px;
  /* border: 1px solid #e9ecef; */
}

.filter-label {
  font-weight: 600;
  color: #495057;
  margin-right: 5px;
}

.filter-group a {
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.filter-group a:hover {
  background-color: rgba(233, 236, 239, 0.5);
}

.filter-group .link-active {
  background-color: #e3f2fd;
  color: #1976d2;
}

.clear-filters {
  margin-left: auto;
}

.clear-filters a {
  color: var(--fontColor);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  background: var(--card);
  opacity: 0.7;
}

.clear-filters a:hover {
  background: var(--background);
  color: var(--fontColor);
  opacity: 1;
}

.table-header {
  background: var(--card);
  border-radius: 8px;
  box-shadow: var(--boxShadow);
  margin-bottom: 24px;
  padding: 16px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--background);
}

.search-box {
  flex: 1;
  max-width: 500px;
}

.search-form {
  display: flex;
  gap: 8px;
  background: var(--background);
  padding: 4px;
  border-radius: 4px;
  /* border: 1px solid var(--color); */
}

.search-input {
  flex: 1;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: var(--fontColor);
  background: transparent;
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: var(--fontColor);
  opacity: 0.5;
}

.search-button {
  padding: 6px 12px;
  background: var(--color);
  color: var(--color-on, #0f1c1a);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-button:hover {
  background: var(--hover);
}

.items-count {
  font-size: 13px;
  color: var(--fontColor);
  opacity: 0.7;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--color);
}

.count-number {
  font-weight: 600;
  color: var(--fontColor);
  margin-left: 4px;
}

.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--color);
}

.filter-label {
  font-weight: 500;
  color: var(--fontColor);
  font-size: 12px;
  opacity: 0.7;
}

.filter-group a {
  padding: 3px 6px;
  border-radius: 3px;
  transition: all 0.2s ease;
  font-size: 12px;
  color: var(--fontColor);
  opacity: 0.7;
  text-decoration: none;
    /* border: 1px solid var(--color); */
}

.filter-group a:hover {
  color: var(--fontColor);
  opacity: 1;
}

.filter-group .link-active {
  background: var(--color);
  color: var(--color-on, #0f1c1a);
  font-weight: 500;
  opacity: 1;
}

.clear-filters {
  margin-left: auto;
}

.clear-filters a {
  color: var(--red);
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 3px;
  transition: all 0.2s ease;
  /* border: 1px solid var(--red); */
}

.clear-filters a:hover {
  background-color: var(--red);
  color: var(--fontColor);
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: var(--boxShadow);
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 6px;
    color: var(--fontColor);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    background: var(--background);
    border: 1px solid var(--color);
}

.pagination-item:hover:not(.disabled) {
    background: var(--color);
    color: var(--color-on, #0f1c1a);
    transform: translateY(-1px);
}

.pagination-item.active {
    background: var(--color);
    color: var(--color-on, #0f1c1a);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    color: var(--fontColor);
    opacity: 0.7;
}

.pagination-icon {
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-item {
        min-width: 2rem;
        height: 2rem;
        padding: 0 0.5rem;
        font-size: 0.9rem;
    }
    
    .pagination-ellipsis {
        min-width: 2rem;
        height: 2rem;
    }
}

/* Compact Pagination Styles */
.pagination-compact {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--boxShadow);
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 6px;
    color: var(--fontColor);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    background: var(--background);
    border: 1px solid var(--color);
}

.nav-btn:hover:not(.disabled) {
    background: var(--color);
    color: var(--color-on, #0f1c1a);
    transform: translateY(-1px);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.page-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fontColor);
    font-size: 0.9rem;
}

.current-page {
    font-weight: 600;
    color: var(--color-strong);
}

.total-pages {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .pagination-nav {
        padding: 0.5rem 1rem;
    }
    
    .nav-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .page-indicator {
        font-size: 0.8rem;
    }
}

.ce-marking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0056b3;
    color: #ffffff;
    border: 1px solid #004494;
    border-radius: 3px;
    width: 24px;
    height: 16px;
    font-size: 10px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Solutions Page Styles */
.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.solutions-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-intro h1 {
    font-size: 2.5rem;
    color: var(--fontColor);
    margin-bottom: 1rem;
}

.solutions-intro p {
    font-size: 1.2rem;
    color: var(--fontColor);
    max-width: 800px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: var(--card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--boxShadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--boxShadowHover);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    font-size: 2rem;
}

.solution-header h2 {
    font-size: 1.5rem;
    color: var(--fontColor);
    margin: 0;
}

.solution-content {
    color: var(--fontColor);
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.solution-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}

.custom-solutions {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: 10px;
    box-shadow: var(--boxShadow);
}

.custom-solutions h2 {
    font-size: 2rem;
    color: var(--fontColor);
    margin-bottom: 1rem;
}

.custom-solutions p {
    font-size: 1.1rem;
    color: var(--fontColor);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .solutions-container {
        padding: 1rem;
    }
    
    .solutions-intro h1 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
}

/* WhatsApp CTA Styles */
.whatsapp-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    color: var(--fontColor);
}

.whatsapp-cta h3 {
    color: var(--fontColor);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.whatsapp-cta p {
    color: var(--fontColor);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.whatsapp-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--fontColor);
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .whatsapp-cta {
        padding: 1rem;
    }
    
    .whatsapp-cta h3 {
        font-size: 1.3rem;
    }
}






.bol-images-container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 5px;
}

.bol-navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--card);
  border-radius: 5px;
  box-shadow: var(--boxShadow);
}

.bol-navigation-bar .main-btn {
  margin: 0 10px;
}

.bol-navigation-bar .main-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.item-ean {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--fontColor);
  padding: 0 20px;
}

.bol-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.bol-image-card {
  border: 1px solid var(--background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--boxShadow);
  background: var(--background);
  position: relative;
  transition: 0.2s;
}

.bol-image-card:hover {
  box-shadow: var(--boxShadowHover);
}

.image-usage {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color);
  color: var(--color-on, #0f1c1a);
  padding: 3px 8px;
  font-size: 0.8em;
  border-bottom-right-radius: 8px;
}

.bol-product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--card);
  display: block;
}

.bol-notes-section {
  margin-top: 20px;
  background: var(--card);
  padding: 15px;
  border-radius: 5px;
  box-shadow: var(--boxShadow);
}

.bol-notes {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  resize: vertical;
  background: var(--background);
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
}

.save-notes-btn {
  padding: 8px 16px;
  background: var(--color);
  color: var(--color-on, #0f1c1a);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.save-notes-btn:hover {
  background: var(--hover);
}

/* Professional Usage Dashboard Styles */
.dashboard-header {
  background: linear-gradient(135deg, var(--card) 0%, var(--background) 100%);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-left {
  flex: 1;
  min-width: 300px;
}

.dashboard-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fontColor);
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, var(--color), var(--hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-subtitle {
  color: var(--fontColor);
  opacity: 0.8;
  font-size: 1.1rem;
  margin: 0;
}


/* Balance Overview */
.balance-overview {
  margin-bottom: 3rem;
}

.balance-card-professional {
  background: linear-gradient(135deg, var(--card) 0%, var(--background) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.balance-card-professional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color), var(--hover), var(--color));
}

.balance-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.balance-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color), var(--hover));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.balance-icon-professional {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.balance-info {
  flex: 1;
}

.balance-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fontColor);
  margin: 0 0 0.5rem 0;
}

.balance-description {
  color: var(--fontColor);
  opacity: 0.7;
  margin: 0;
  font-size: 1rem;
}

.balance-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.currency-symbol {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-strong);
  opacity: 0.8;
}

.amount-value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--fontColor);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.balance-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--green); }
  70% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.status-text {
  color: var(--fontColor);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fontColor);
  margin: 0;
}


/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color), var(--hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-content {
  margin-bottom: 1rem;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fontColor);
  margin: 0 0 0.5rem 0;
}

.service-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-strong);
}

.price-unit {
  font-size: 0.9rem;
  color: var(--fontColor);
  opacity: 0.7;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.usage-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--fontColor);
  opacity: 0.8;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}



/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-title {
    font-size: 2rem;
  }
  
  .balance-card-professional {
    padding: 1.5rem;
  }
  
  .balance-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .amount-value {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Bol.com Dashboard Styles */
.bol-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color);
}

.dashboard-header h1 {
  font-size: 2rem;
  color: var(--fontColor);
  margin: 0;
  font-weight: 600;
}

.dashboard-header--bol,
.dashboard-header--kaufland {
  border-bottom: none;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: var(--boxShadow);
}

.dashboard-header--bol {
  background: linear-gradient(135deg, #009fe3 0%, #0075be 100%);
}

.dashboard-header--kaufland {
  background: linear-gradient(135deg, #e30613 0%, #8cc63e 100%);
}

.dashboard-header--bol h1,
.dashboard-header--kaufland h1 {
  color: #ffffff;
  font-weight: 700;
}

.dashboard-header--bol .add-btn {
  background: rgba(0, 0, 0, 0.26);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.dashboard-header--bol .add-btn:hover {
  background: rgba(0, 0, 0, 0.36);
}

.add-btn {
  background: var(--color);
  color: var(--color-on, #0f1c1a);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.add-btn:hover {
  background: var(--hover);
  transform: translateY(-1px);
}

.platform-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-card {
  flex: 1 1 280px;
  min-height: 150px;
  border-radius: 14px;
  padding: 1.25rem;
  text-decoration: none;
  color: #ffffff;
  box-shadow: var(--boxShadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--boxShadowHover);
}

.platform-card__label {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.platform-card__hint {
  font-size: 0.95rem;
  opacity: 0.95;
}

.platform-card--bol {
  background: linear-gradient(135deg, #009fe3 0%, #0075be 100%);
}

.platform-card--kaufland {
  background: linear-gradient(135deg, #e30613 0%, #8cc63e 100%);
}

.platform-card--disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* Platforms hub — overview with live order counts */
.platform-hub {
  max-width: 1100px;
}

.platform-hub__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--color);
}

.platform-hub__header h1 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fontColor);
}

.platform-hub__subtitle {
  margin: 0;
  font-size: 1rem;
  opacity: 0.78;
  max-width: 34rem;
  line-height: 1.45;
}

.platform-hub__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--boxShadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 9rem;
  overflow: hidden;
}

.platform-hub__summary-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
  font-weight: 600;
}

.platform-hub__summary-value-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 4.5rem;
  overflow: hidden;
}

.platform-hub__summary-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-strong);
  line-height: 1;
}

.platform-hub__summary-spinner {
  transform: translate(-50%, -50%);
}

.platform-hub__summary-spinner span {
  font-size: 1.35rem;
  color: var(--color-strong);
  transform: translateY(2px);
}

.platform-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.35rem;
}

.platform-hub-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.15rem;
  color: #ffffff;
  box-shadow: var(--boxShadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
  animation: platform-hub-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--platform-hub-stagger, 0) * 0.12s);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}

.platform-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--boxShadowHover);
}

.platform-hub-card--pulse {
  animation: platform-hub-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards,
             platform-hub-pulse 0.85s ease;
}

.platform-hub-card__glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.platform-hub-card--bol {
  background: linear-gradient(145deg, #009fe3 0%, #0075be 55%, #005a94 100%);
}

.platform-hub-card--kaufland {
  background: linear-gradient(145deg, #e30613 0%, #c40510 42%, #8cc63e 100%);
}

.platform-hub-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.platform-hub-card__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.platform-hub-card__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.platform-hub-card__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.82;
  font-weight: 600;
}

.platform-hub-card__link-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.platform-hub-card__link-badge--connected {
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(167, 243, 208, 0.55);
  color: #ecfdf5;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  animation: platform-link-pulse 2.4s ease infinite;
}

.platform-hub-card__link-badge--disconnected {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.platform-hub-card__link-badge--disconnected:hover {
  background: rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.platform-hub-card__orders {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.5rem;
  margin: 0.15rem 0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.platform-hub-card__metric {
  min-height: 3.4rem;
}

.platform-hub-card__orders-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.platform-hub-card__spinner span {
  color: #ffffff;
  font-size: 2.4rem;
}

.platform-hub-card__orders-label {
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

.dashboard-back-nav {
  margin: 0 0 0.9rem;
}

.dashboard-back-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.dashboard-back-nav__link .bi {
  font-size: 1.35em;
  line-height: 1;
}

.platform-hub-card__foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.platform-hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.platform-hub-card__cta--primary {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
}

.platform-hub-card__cta--primary:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.platform-hub-card--bol .platform-hub-card__cta--primary {
  color: #0075be;
}

.platform-hub-card--kaufland .platform-hub-card__cta--primary {
  color: #b8050f;
}

.platform-hub-card__cta--ghost {
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.platform-hub-card__cta--ghost:hover {
  background: rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

@keyframes platform-hub-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes platform-hub-pulse {
  0%, 100% {
    box-shadow: var(--boxShadow);
  }
  50% {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  }
}

@keyframes platform-link-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-hub-card {
    animation: none;
  }

  .platform-hub-card__link-badge--connected {
    animation: none;
  }

  .platform-hub-card--pulse {
    animation: none;
  }
}

@media (max-width: 720px) {
  .platform-hub__header {
    align-items: stretch;
  }

  .platform-hub__summary {
    align-items: flex-start;
  }

  .platform-hub-card__orders-value {
    font-size: 2.5rem;
  }
}

/* Product toevoegen — Bol / Kaufland (zelfde kleuren als dashboard) */
.product-add-page--bol {
  --product-add-accent: #009fe3;
  --product-add-accent-dark: #0075be;
  --product-add-accent-hover: #0075be;
  --product-add-accent-soft: rgba(0, 159, 227, 0.14);
  --product-add-gradient: linear-gradient(135deg, #009fe3 0%, #0075be 100%);
  --product-add-on-accent: #ffffff;
  --product-add-card-accent: #009fe3;
}

.product-add-page--kaufland {
  --product-add-accent: #e30613;
  --product-add-accent-dark: #b8050f;
  --product-add-accent-hover: #c40510;
  --product-add-accent-soft: rgba(227, 6, 19, 0.12);
  --product-add-gradient: linear-gradient(135deg, #e30613 0%, #8cc63e 100%);
  --product-add-on-accent: #ffffff;
  --product-add-card-accent: #e30613;
}

.product-add-page__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.35rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--product-add-gradient);
  box-shadow: var(--boxShadow);
}

.product-add-page__hero h1 {
  flex: 1 1 auto;
  margin: 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--product-add-on-accent);
}

.product-add-page__hero .add-btn {
  background: rgba(0, 0, 0, 0.26);
  color: var(--product-add-on-accent);
  border: 1px solid rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.product-add-page__hero .add-btn:hover {
  background: rgba(0, 0, 0, 0.36);
  color: var(--product-add-on-accent);
  transform: translateY(-1px);
}

.product-add-page--bol .supplier-card,
.product-add-page--kaufland .supplier-card {
  border-left: 4px solid var(--product-add-card-accent);
}

.product-add-page .search-btn,
.product-add-page .supplier-card-action,
.product-add-page .add-btn.page-add-submit,
.product-add-page #addProductBtn {
  background: var(--product-add-gradient) !important;
  color: var(--product-add-on-accent) !important;
}

.product-add-page .search-btn:hover:not(:disabled),
.product-add-page .supplier-card-action:hover,
.product-add-page .add-btn.page-add-submit:hover:not(:disabled) {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.product-add-page .search-input-wrapper input:focus,
.product-add-page .chunk-search-input:focus,
.product-add-page .ean-input:focus {
  border-color: var(--product-add-accent) !important;
}

.product-add-page .fetch-loading-status {
  border-color: var(--product-add-accent) !important;
  background: var(--product-add-accent-soft) !important;
}

.product-add-page .fetch-spinner,
.product-add-page .add-product-overlay-spinner,
.product-add-page .page-add-submit-overlay-spinner {
  border-top-color: var(--product-add-accent) !important;
}

.product-add-page a.page-add-mode-item:not(.is-active)::after {
  background: var(--product-add-accent);
}

.product-add-page a.page-add-mode-item:focus-visible {
  outline-color: var(--product-add-accent);
}

.product-add-page--bol .chunk-search-results .chunk-search-item,
.product-add-page--bol .chunk-item {
  border-color: rgba(0, 117, 190, 0.25);
}

.product-add-page--bol .chunk-item.selected {
  border-color: var(--product-add-accent);
  background: var(--product-add-accent-soft);
}

.product-add-page--kaufland .chunk-search-results .chunk-search-item,
.product-add-page--kaufland .chunk-item {
  border-color: rgba(227, 6, 19, 0.2);
  color: var(--fontColor);
}

.product-add-page--kaufland .chunk-item:hover {
  border-color: var(--product-add-accent);
}

.product-add-page--kaufland .chunk-item.selected {
  border-color: var(--product-add-accent);
  background: var(--product-add-accent-soft);
}

.dashboard-header--kaufland .add-btn {
  background: rgba(0, 0, 0, 0.26);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.dashboard-header--kaufland .add-btn:hover {
  background: rgba(0, 0, 0, 0.36);
}

/* Main Cards - Large and prominent */
.main-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.main-card {
  background: var(--card);
  border-radius: 12px;
  padding: 4rem;
  text-decoration: none;
  color: var(--fontColor);
  box-shadow: var(--boxShadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Removed green top border */

.main-card:hover {
  box-shadow: var(--boxShadowHover);
  transform: translateY(-5px);
  border-color: var(--hover);
}

.main-card .card-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-strong);
  margin-bottom: 1rem;
}

/* Orders gets the biggest number */
.main-card:nth-child(2) .card-number {
  font-size: 3.5rem;
}

/* Returns and Questions get smaller numbers */
.main-card:nth-child(1) .card-number,
.main-card:nth-child(3) .card-number {
  font-size: 2.5rem;
}

.card-number-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
}

.secondary-card .card-number-container{
  min-height: 3.2rem;
}

.small-card .card-number-container{
  min-height: 2.4rem;
}

.main-card .card-title {
  font-size: 1.2rem;
  color: var(--fontColor);
  font-weight: 600;
}

/* Secondary Cards - Medium size */
.secondary-cards {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.secondary-card {
  flex: 1;
  min-width: 250px;
}

.secondary-card {
  background: var(--card);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: var(--fontColor);
  box-shadow: var(--boxShadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-card:hover {
  box-shadow: var(--boxShadowHover);
  transform: translateY(-3px);
  border-color: var(--color);
}

.secondary-card .card-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-strong);
  margin-bottom: 0.5rem;
}

.secondary-card .card-title {
  font-size: 1rem;
  color: var(--fontColor);
  font-weight: 500;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.card-deprecation-label {
  font-size: 0.7rem;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}

.card-warning-message {
  font-size: 0.75rem;
  color: #ff9800;
  background: rgba(255, 152, 0, 0.1);
  padding: 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}

/* Small Cards - Less prominent */
.small-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.small-card {
  background: var(--background);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--fontColor);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.7;
}

.small-card:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.small-card .card-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fontColor);
  margin-bottom: 0.25rem;
}

.small-card .card-title {
  font-size: 0.8rem;
  color: var(--fontColor);
  font-weight: 400;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bol-dashboard {
    padding: 1rem;
  }
  
  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .main-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: none;
  }
  
  .main-card {
    padding: 2rem;
  }
  
  .main-card .card-number {
    font-size: 2.5rem;
  }
  
  .secondary-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .secondary-card {
    padding: 1.5rem;
  }
  
  .small-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .small-card {
    width: 200px;
  }
}

/* Platform indicator styling for asinform */
.platform-indicator {
  transition: all 0.3s ease;
}

/* ===========================================================
   Bol Orders Summary
   =========================================================== */
.orders-summary{
  margin: 24px auto;
  padding: 24px;
  background: var(--background);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  max-width: 1200px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.orders-summary__header h2{
  margin: 0;
  color: var(--fontColor);
  font-size: 1.5rem;
}

.orders-summary__header p{
  margin: 8px 0 0 0;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.95rem;
}

.orders-summary__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 28px 0 12px 0;
}

.orders-summary__card{
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.orders-summary__label{
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.orders-summary__value{
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--fontColor);
  font-variant-numeric: tabular-nums;
}

.orders-summary__statuses{
  margin-top: 12px;
}

.orders-summary__statuses h3{
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  color: var(--fontColor);
}

.orders-summary__status-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.orders-summary__status-list li{
  background: rgba(15, 23, 42, 0.04);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--fontColor);
  font-size: 0.95rem;
}

.orders-summary__status-label{
  font-weight: 600;
  text-transform: capitalize;
}

.orders-summary__status-value{
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.orders-summary__timestamp{
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.5);
}

.orders-summary__feedback{
  margin-top: 12px;
  font-size: 0.95rem;
}

.orders-summary__feedback--loading{
  color: rgba(15, 23, 42, 0.6);
}

.orders-summary__feedback--error{
  color: var(--red);
  font-weight: 600;
}

@media (max-width: 768px){
  .orders-summary{
    padding: 20px;
    border-radius: 12px;
  }

  .orders-summary__grid{
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
  }

  .orders-summary__value{
    font-size: 1.6rem;
  }
}

.orders-count--updated{
  animation: orders-count-pop 0.4s ease;
}

.orders-count--hidden{
  opacity: 0;
}

/* Bol dashboard: tijdelijke cache-waarden tot live data binnen is (zachte “drijf” + lichte schaal) */
.orders-count--cached-pending{
  display: inline-block;
  animation: bol-metric-cache-drift 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@media (prefers-reduced-motion: reduce){
  .orders-count--cached-pending{
    animation: none;
    transform: none;
    opacity: 0.78;
  }
}

@keyframes bol-metric-cache-drift{
  0%, 100%{
    transform: translateY(3px) scale(0.985);
    opacity: 0.52;
  }
  50%{
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
  }
}

.orders-loading-indicator{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  display: inline-flex;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.orders-loading-indicator span{
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-strong);
  transform-origin: center bottom;
  transform: translateY(6px);
  animation: orders-dot-bounce 1.2s infinite ease-in-out;
}

.orders-loading-indicator span:nth-child(2){
  animation-delay: 0.15s;
}

.orders-loading-indicator span:nth-child(3){
  animation-delay: 0.3s;
}

.secondary-card .orders-loading-indicator span{
  font-size: 2.8rem;
}

.small-card .orders-loading-indicator span{
  font-size: 2.2rem;
}

.orders-loading-indicator--visible{
  opacity: 1;
  visibility: visible;
}

@keyframes orders-count-pop{
  0%{
    transform: scale(1);
  }
  40%{
    transform: scale(1.12);
  }
  100%{
    transform: scale(1);
  }
}

@keyframes orders-dot-bounce{
  0%, 80%, 100%{
    transform: translateY(6px);
    opacity: 0.3;
  }
  40%{
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ========== Bol orders admin — filterbalk (thema via dark.css / light.css :root) ========== */
.bol-filter-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  border-radius: 14px;
  border: 1px solid var(--borderColor);
  background: var(--card);
  box-shadow: var(--boxShadow);
  overflow: hidden;
}
.bol-filter-bar::before {
  content: '';
  display: block;
  height: 3px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--color), var(--bolColor));
  opacity: 0.9;
}
.bol-filter-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 18px 10px;
  border-bottom: 1px solid var(--borderColor);
  background: var(--body);
}
.bol-filter-bar-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fontColor);
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.bol-filter-bar-title .bi {
  font-size: 1rem;
  color: var(--color-strong);
  opacity: 1;
}
.bol-filter-bar-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 14px 18px 16px;
}
.bol-filter-bar .main-text-input,
.bol-filter-bar select,
.bol-filter-bar input[type="text"],
.bol-filter-bar input[type="date"],
.bol-filter-bar input[type="number"] {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--borderColor);
  background: var(--body);
  color: var(--fontColor);
  box-shadow: var(--inputShadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bol-filter-bar select {
  padding-right: 28px;
  cursor: pointer;
}
.bol-filter-bar .main-text-input:hover,
.bol-filter-bar select:hover,
.bol-filter-bar input:hover {
  border-color: var(--color);
}
.bol-filter-bar .main-text-input:focus,
.bol-filter-bar select:focus,
.bol-filter-bar input:focus {
  outline: none;
  border-color: var(--color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color) 28%, transparent);
}
.bol-filter-bar select {
  min-width: 120px;
}
.bol-filter-bar select.bol-sort-select {
  min-width: 220px;
  max-width: 100%;
}
.bol-filter-bar .bol-lb-select {
  min-width: 160px;
}
.bol-filter-bar input[type="text"] {
  min-width: 140px;
  max-width: 220px;
}
.bol-filter-bar input[type="date"] {
  min-width: 140px;
}
.bol-filter-bar .main-submit-button {
  min-height: 40px;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
  border-radius: 10px;
}
.bol-filter-bar-spacer {
  flex: 1 1 12px;
  min-width: 8px;
}
.bol-filter-sync {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fontColor);
  opacity: 0.78;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--borderColor);
  background: var(--body);
  transition: color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.bol-filter-sync:hover {
  color: var(--color-strong);
  opacity: 1;
  border-color: var(--color);
}
.bol-filter-bar label.bol-filter-date-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fontColor);
  opacity: 0.72;
  margin-right: -6px;
}

/* Admin user-filter (EANs / Wallets) — zelfde bol-filter-bar, iets bredere zoekvelden */
.bol-filter-bar-count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fontColor);
  opacity: 0.8;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--borderColor);
  background: var(--card);
  white-space: nowrap;
}
.admin-user-filter-bar .admin-user-filter-search {
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 240px;
}
.admin-user-filter-bar .admin-user-filter-select {
  min-width: 220px;
  max-width: 100%;
  flex: 1 1 220px;
}