.customer-page {
  min-height: 100vh;
}
.customer-header {
  z-index: 100;
}
.customer-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100, #deeee5);
  color: var(--emerald-800, #10513e);
  font-size: 1.2rem;
}
.customer-page .card {
  overflow: hidden;
}
.customer-page .form-label {
  font-size: 0.9rem;
}
.customer-page .form-control,
.customer-page .form-select {
  border-color: #e5e7eb;
  border-radius: 12px;
}
.customer-page .form-control:focus,
.customer-page .form-select:focus {
  border-color: var(--emerald-500, #1f8a6f);
  box-shadow: 0 0 0 0.2rem rgba(31, 138, 111, 0.12);
}
.customer-page textarea {
  resize: vertical;
}
@media (max-width: 576px) {
  .customer-page main {
    padding-top: 15px !important;
  }
  .customer-page .card-body {
    padding: 20px !important;
  }
  .customer-header h5 {
    font-size: 1rem;
  }
}
