/* ==================================================
   BIKE STAND SPECIFIEK
   ================================================== */

.mxbs-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.mxbs-step h3,
.mxbs-options,
.mxbs-step fieldset,
.mxbs-logo-note-wrap,
.mxbs-blank-notice,
.mxbs-actions {
  grid-column: 1 / -1;
}

.mxbs-options,
.mxbs-step fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: none;
  padding: 0;
  margin: 0;
}

.mxbs-step fieldset legend {
  grid-column: 1 / -1;
  font-weight: 700;
  margin-bottom: 4px;
}

.mxbs-logo-note-wrap {
  margin-top: 16px;
}

.mxbs-rider-row,
.mxbs-rider-buttons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.mxbs-rider-buttons button {
  width: fit-content;
}

.mxbs-info {
  background: #f8f8f8;
  border-left: 4px solid #ea5b0c;
  padding: 12px 14px;
  border-radius: 4px;
}

.mxbs-info p {
  margin: 0;
}

.mxbs-blank-notice {
  display: none;
  width: 100%;
  margin-top: 4px;
}

.mxbs-step-3 {
  grid-template-columns: 1fr;
}

.mxbs-logo-options {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.mxbs-logo-note-wrap,
.mxbs-upload,
.mxbs-info-design {
  grid-column: 1 / -1;
}

.mxbs-dropzone {
  border: 2px dashed #3b82f6;
  background: #f8fbff;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 6px;
}

.mxbs-dropzone.is-dragover {
  background: #eef4ff;
  border-color: #2563eb;
}

.mxbs-upload-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.mxbs-upload-list li {
  font-size: 14px;
  padding: 4px 0;
}

.mxbs-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mxbs-field-group button {
  width: fit-content;
}

/* Blanco kleur keuze */
.mxbs-blank-color-wrap {
    width: 100%;
    margin: 15px 0;
}

.mxbs-blank-color-wrap label {
    display: block;
    width: 100%;
}

.mxbs-blank-color-wrap select {
    width: 100%;
}

/* Foutmelding altijd onder het veld */
.mxbs-error-step1 {
    display: block;
    width: 100%;
    margin-top: 10px;
}

/* Indien parent flex gebruikt */
.mxbs-step .mxbs-error-holder {
    flex-basis: 100%;
}

/* Rider ID knoppen iets netter onder de velden */
#mxbsShowNameStyle,
#mxbsShowNumberStyle {
  width: fit-content;
  align-self: start;
}

/* Mobiel */
@media (max-width: 768px) {
  .mxbs-step,
  .mxbs-options,
  .mxbs-step fieldset {
    grid-template-columns: 1fr;
  }

  #mxbsShowNameStyle,
  #mxbsShowNumberStyle {
    width: 100%;
  }
  
    .mxbs-rider-row,
  .mxbs-rider-buttons {
    grid-template-columns: 1fr;
  }

  .mxbs-rider-buttons button {
    width: 100%;
  }
  
    .mxbs-logo-options {
    grid-template-columns: 1fr !important;
  }
}