.cursor-notallowed {
  cursor: not-allowed;
  opacity: 0.5;
}

#create-user .form-container {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

#create-user .form-container > .g-col-6 {
  width: 100%;
  max-width: 500px;
}

.form-floating .form-control,
.form-floating .form-select {
  border-radius: 16px;
  border: 1px solid #cdcccc;
  padding: 16px 12px !important;
}

.form-floating input.form-control:focus {
  border-color: #2e5c65;
  box-shadow: none;
}

#shippingtable td {
  text-align: center;
  padding: 5px 10px !important;
}

#shippingtable input {
  max-width: 200px;
}

.breadcrumb-item a {
  color: #505050 !important;
}

.shipping-matrix {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
}

.shipping-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.shipping-header {
  font-weight: 600;
  background: #f7f7f7;
  border-bottom: 2px solid #ccc;
  text-align: center;
}

.shipping-row input {
  /* max-width: 160px; */
  text-align: center;
  margin: 0 auto;
}

.shipping-row .btn {
  width: 100%;
}

input.form-control.js-type-ahead-field.type-ahead-field {
  border-color: #2e5c65;
}

.input-group .form-select {
  border-color: #2e5c65;
  background-color: #fff;
}

@media (max-width: 768px) {
  .shipping-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .shipping-header {
    display: none;
  }

  .shipping-row > div:nth-child(odd)::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
  }
}
