.menu-text {
  text-transform: capitalize;
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  font-size: 1.02rem;
  color: #4b5563;
  margin-bottom: 4px;
  display: block;
}

.form-input,
.form-select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid #d1d5db;
  font-size: 1.05rem;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, transform 0.08s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #1f3a8a;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  background: #f9fbff;
  transform: translateY(-0.5px);
}

input[type="file"].form-input {
  padding: 4px 6px;
  font-size: 0.95rem;
}

.row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.row > * {
  flex: 1;
 
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 1.02rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, opacity 0.1s ease;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover:not(:disabled) {
  background: #1e40af;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-secondary:hover:not(:disabled) {
  background: #d1d5db;
}

.btn-danger {
  background: #ef4444;
  color: #ffffff;
}

.btn-danger:hover:not(:disabled) {
  background: #dc2626;
}

.btn-sm {
  padding: 4px 10px;
  font-size: 0.9rem;
  border-radius: 999px;
}

.btn + .btn {
  margin-left: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.95rem;
  background: #e5e7eb;
  color: #374151;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-danger {
  background: #fee2e2;
  color: #b91c1c;
}
