#declaration-form-app{
  line-height: 1.7;
  min-height: 30vh;
}

.bonn-bg-gray-500 {
  background: #f9fafb;
}

.bonn-section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.bonn-divider {
  border-top: 1px solid #e5e7eb;
}

.bonn-step-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.bonn-step-dot-wrap {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bonn-step-dot-wrap:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 15px);
  right: calc(-50% + 15px);
  height: 2px;
  background: #dee2e6;
  transition: background 0.3s;
}

.bonn-step-dot-wrap.done:not(:last-child)::after {
  background: #0d6efd;
}

.bonn-step-dot {
  width: 28px;
  height: 28px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50% !important;
  border: 1px solid #dee2e6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonn-step-dot-wrap.active {
  .bonn-step-dot {
    background-color: #0d6efd;
    color: #fff;
  }
}

.bonn-step-dot-wrap.done {
  .bonn-step-dot {
    background-color: #0d6efd;
    color: #fff;
  }
}

.bonn-text-small {
  font-size: 10px;
  letter-spacing: 0.07em;
}

/* Body starts */
.bonn-card-body {
  p {
    margin-bottom: 0.25rem;
  }
}

.bonn-card-info {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
}

.bonn-wiz-section {
  margin-bottom: 2rem;

  .bonn-wiz-section-heading-txt {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .bonn-wiz-section-note {
    border-radius: 0.3rem;
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    margin-top: 8px;
    margin-bottom: 0rem;
    border: 1px solid #dee2e6;
    font-size: 0.85rem;
    
    p{
      margin-bottom: 0;
    }
  }
  
  a{
    text-decoration: underline;
  }

  .bonn-wiz-subsection {
    padding-left: 1.25rem;
  }

  .bonn-wiz-subsection-content {
    color: #080809bf;
    margin-bottom: 0.5rem;
  }

  .bonn-wiz-subsection-depth-0 {
    margin-top: 1.5rem;
  }
}

.bonn-wiz-input-value {
  margin-right: 0.25rem;
}

.bonn-wiz-input-label {
  padding-left: 0.75rem;
}

/* Payment container start */


.btn-pay {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  transition: background 0.15s;
}

.btn-pay:hover:not(:disabled) {
  background: #333;
  color: #fff;
}

/* Payment container ends  */

/* Body ends */

/* Add this tiny trick to hide raw {{ brackets }} before Vue loads */
[v-cloak] {
  display: none;
}


.bonn-detail-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
    gap: 12px;
    flex-wrap: wrap;
}

.bonn-detail-label {
    color: #64748b;
    white-space: nowrap;
}

.bonn-detail-value {
    font-weight: 500;
    text-align: right;
}