#sb-wrapper {
  max-width: 700px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

#sb-menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.sb-main-btn {
  padding: 10px 20px;
  border: 1px solid #0089ca;
  background: #fff;
  color: #0089ca;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.sb-main-btn:hover {
  background: #0089ca;
  color: #fff;
}

#sb-step-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sb-step {
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f2f2f2;
  cursor: default;
}

.sb-step.active {
  background: #0089ca;
  color: #fff;
}

.sb-step-content {
  display: none;
  background: #f9fbff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sb-step-content.active {
  display: block;
}

.sb-btn-group {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.sb-btn {
  background: #0089ca;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.sb-btn:hover {
  background: #006e9e;
}

#sb-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}

#sb-modal.hidden {
  display: none;
}

.sb-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 400px;
  position: relative;
}

#sb-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}
/* Serviceboard resultattabel */
.sb-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.sb-results-table th,
.sb-results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Reparationsbeskrivelse under hver række */
.repair-row td {
    background-color: #f9f9f9;
    border-top: none;
    border-bottom: 2px solid #ccc;
}

.repair-box {
    padding: 10px;
    font-style: italic;
    color: #333;
}
