/* Reset & Body */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f0f2f5;
  padding: 20px;
  display: flex;
  justify-content: center;
}

/* Container */
.form-container {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Title */
h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #2c3e50;
  font-weight: 600;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #34495e;
}

/* Inputs & Selects */
input, select, textarea {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2d6cdf;
  box-shadow: 0 0 5px rgba(45, 108, 223, 0.3);
}


/* Textarea resize */
textarea {
  resize: vertical;
  min-height: 60px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #2d6cdf;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #1b4bb8;
}

/* Status Message */
.status {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }

  input, select, textarea {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 10px;
  }
}
.dropdown-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-btn {
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.add-btn:hover {
  background-color: #27ae60;
}

.dropdown-wrapper select {
  flex: 1;
}
