.form-container {
  width: 400px;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  height: 100vh;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.form-check.form-switch {
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

#selectedPlots { margin-top: 1rem; }
#selectedPlots .plot-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}
#selectedPlots .plot-item button {
  background: transparent;
  border: none;
  color: #c62828;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
#selectedPlots .plot-item button:hover {
  color: red;
  transform: scale(1.1);
}

.privacy-text {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
  text-align: justify;
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
}

.form-container .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  font-weight: 600;
  box-shadow: none;
}
.form-container .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: none;
  box-shadow: none;
}

@media (max-width: 992px) {
  .form-container {
    width: 100%;
    height: auto;
    order: 1;
  }
  .consents-block {
    position: relative;
    z-index: 1;
    margin-top: 8px;
  }
}

.disabled-field .form-label { opacity: .6; }
.disabled-field .form-control { background-color: #f8f9fa; }

.form-control[readonly], .form-control:disabled,
input[readonly], input:disabled,
textarea[readonly], textarea:disabled {
  -webkit-text-fill-color: #212529 !important;
  color: #212529 !important;
  opacity: 1 !important;
}
.disabled-field .form-control::placeholder { opacity: .65; }

.modal form button[type="submit"] {
  width: 100%;
}
