/* Osnovni layout */
.order-form {
  background: #201c1d;
  padding: 30px;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  padding-bottom: 6rem;
}

.order-form h2 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
  color: #fba01c;
}

.order-form section {
  margin-bottom: 30px;
}

/* Inputi i textarea */
.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form input[type="number"],
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin: 8px 0;
  border: 1px solid #efefef;
  border-radius: 6px;
  background: #fff;
  color: #201c1d;
}

.order-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Labela */
.order-form label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 4px;
}

/* Checkbox / radio */
.order-form .form-inline label {
  display: inline-block;
  margin-right: 20px;
  font-weight: 400;
}

/* Sekcije s radio gumbima */
.order-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-form .radio-group label {
  background: #2a2a3d;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.order-form .radio-group input:checked + label,
.order-form .radio-group label:hover {
  border-color: #fba01c;
  background: #3a3a50;
}

/* Upload zona */
.drop-zone {
  border: 2px dashed #666;
  padding: 30px;
  text-align: center;
  background: #2a2a3d;
  border-radius: 8px;
  color: #aaa;
  transition: border-color 0.3s;
}

.drop-zone:hover {
  border-color: #fba01c;
  color: #fff;
}

/* Gumbi */
.order-form .form-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.order-form button {
  padding: 10px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-form button[type="submit"] {
  background: #fba01c;
  color: #000;
}

.order-form button[type="submit"]:hover {
  background: #ffbb45;
}

.order-form button[type="button"] {
  background: #444;
  color: #fff;
}

.order-form button[type="button"]:hover {
  background: #666;
}

.form-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.form-table th,
.form-table td {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form input[type="number"],
.order-form select,
.order-form textarea {
  width: calc(100% - 30px);
}

.update {
  margin-top: 2rem;
}

#edit-profile-form > section > div:nth-child(5) > h2:nth-child(2), #edit-profile-form > section > div:nth-child(5) > h2:nth-child(4), #edit-profile-form > section > div:nth-child(5) > h2:nth-child(6), #edit-profile-form > section > div:nth-child(5) > h2:nth-child(8), #edit-profile-form > section > div:nth-child(5) > h2:nth-child(10) {
  display: none;
}

#edit-profile-form > section > div:nth-child(5) > table:nth-child(3), #edit-profile-form > section > div:nth-child(5) > table:nth-child(5), #edit-profile-form > section > div:nth-child(5) > table:nth-child(7), #edit-profile-form > section > div:nth-child(5) > table:nth-child(9), #edit-profile-form > section > div:nth-child(5) > table:nth-child(11) {
  display: none;
}