.modal-content {
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.2rem;
}

.form-control,
.form-select,
textarea {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  transition: all 0.2s ease;
  background-color: #fdfdfd;
  padding: 0.55rem 0.75rem;
}

.form-select-enhanced {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  background-color: #fff;
}

.form-label {
  font-weight: 500;
  color: #444;
  margin-bottom: 0; 
}
label.required::after {
  content: " *";
  color: red;
}

.row.g-3 > .col-md-6,
.row.g-3 > .col-12 {
  margin-bottom: 1rem; 
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; 
  margin-bottom: 1rem; 
}

.form-check-label {
  line-height: 1.4;
}

.form-check-label a {
  color: #0d6efd;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.modal-footer .btn-primary {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
}

.modal-footer .btn-primary:hover {
  background: linear-gradient(135deg, #0b5ed7, #0a53be);
}

.modal-footer .btn-secondary {
  border-radius: 0.5rem;
}

.form-check-label {
  line-height: 1.4;
}

.form-check-input {
  margin-top: 0.2rem; 
}

select.form-select-enhanced {
  display: block;
  width: 100%; 
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

select.form-select-enhanced:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  background-color: #fff;
  outline: none;
}
