.hidden { display: none; }
.step { margin-top: 30px; }
.small-select { width: 80px; display:inline-block; }
.basket-table td, .basket-table th { padding: 8px; }
.total-row { font-weight: bold; }
.btn-outline {
  background:#fff;
  border:1px solid #000;
  color:#000;

  min-width: 100px;      /* sørger for at knappen ikke er for smal */
  text-align: center;    /* centrer teksten */
  padding: 6px 12px;     /* lidt luft inde i knappen */
}
.btn-outline:hover { background:#f5f5f5; }

/* Faktura stil */
.receipt-box {
  border:1px solid #ddd; padding:30px; border-radius:8px; background:#fff;
  max-width:700px; margin:0 auto; box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.receipt-header {
  display:flex; justify-content:space-between; align-items:center;
  border-bottom:2px solid #000; margin-bottom:20px; padding-bottom:10px;
}
.receipt-logo { max-width:150px; }
.receipt-title { font-size:24px; font-weight:bold; }
.receipt-table { width:100%; border-collapse: collapse; margin-bottom:20px; }
.receipt-table th, .receipt-table td { border:1px solid #ddd; padding:8px; text-align:left; }
.receipt-table th { background:#f5f5f5; }
.receipt-total { text-align:right; font-size:18px; font-weight:bold; }
.receipt-actions { text-align:center; margin-top:20px; }

/* Progressbar style */
.progressbar {
  counter-reset: step;
  display: flex;
  justify-content: space-between;
  margin: 30px 0 40px;
  padding: 0;
  list-style: none;
}

.progressbar li {
  position: relative;
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

.progressbar li::before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid #bbb;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: white;
}

.progressbar li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #bbb;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child::after {
  content: none;
}

.progressbar li.active {
  color: #28a745;
}

.progressbar li.active::before {
  border-color: #28a745;
  background-color: #28a745;
  color: white;
}

.progressbar li.active + li::after {
  background-color: #28a745;
}

.qty-select {
  max-width: 70px;     /* gør feltet smallere */
  padding: 4px 6px;    /* mindre indre afstand */
 
}

.add-toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  background: #28a745;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  z-index: 9999;
  opacity: 0;
  transition: opacity .2s ease;
}
.add-toast.show { opacity: 1; }
.add-toast.hidden { display: none; }

.mini-cart-bar {
  position: sticky;
  bottom: 0;
  background: #f8f9fa;
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  margin-top: 12px;
}

.mini-cart-bar span {
  flex-grow: 1;
  text-align: right;
  font-weight: 500;
  color: #333;
}