.commission-request-form {
  display: grid;
  column-gap: var(--minim);
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "types" "details";
  row-gap: var(--semibreve);
  margin-top: var(--semibreve);
}

@media (min-width: 640px) {
  .commission-request-form {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "details types";
  }
}

.commission-types-container {
  grid-area: types;
}

.commission-details-container {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: var(--minim);
}


.select-field {
  padding: 12px 16px;
  font-size: 16px;
  min-width: 220px;
  border: 1px solid var(--grey-400);
  border-radius: 8px;
  background-color: var(--white);
  box-sizing: border-box;
}

.select-field:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.select-group {
  display: flex;
  gap: 0.75em;
  align-items: center;
  flex-wrap: wrap;
}

.selected-time-preview {
  margin-top: 10px;
  font-size: 15px;
}

/* Schedule call page background */
.schedule-call-page {
  background-color: var(--grey-100);
  border-radius: 5px;
  padding: 16px 24px !important;
  position: relative;
  height: 60vh;
  min-height: 60vh !important;
  width: 100%;
  box-sizing: border-box;
}

.schedule-call-heading {
  font-size: 16px;
  font-weight: 540;
  color: var(--mb);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.schedule-call-back-link {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mb-70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.schedule-call-back-link:hover {
  color: var(--fg);
}

.schedule-call-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--dc-greys-900);
  margin: 0;
  letter-spacing: 0.14em;
  margin-bottom: 31px;
}

.schedule-call-button-container {
  position: absolute;
  bottom: 24px;
  right: 16px;
}

.schedule-call-button {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}




/* Schedule selector styles */
.schedule-selector-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.schedule-selector-item {
  position: relative;
}

.schedule-selector-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--dc-greys-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 8px 30px 8px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctext x='2' y='16' font-size='18' font-weight='600' fill='%239ca3af'%3E›%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px 20px;
  outline: none;
}

.schedule-selector-dropdown:hover {
  color: var(--dc-greys-900);
}

.schedule-selector-dropdown:focus {
  color: var(--dc-greys-900);
  outline: none;
}

/* Scheduled Call Card Styles */
.scheduled-call-card {
  background-color: var(--white);
  border-radius: 5px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid var(--grey-200);
  width: 100%;
  box-sizing: border-box;
}

.schedule-call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
}

.scheduled-call-card h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--mb-70);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
  margin-bottom: 16px;
}

.scheduled-call-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scheduled-call-card li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scheduled-call-card li p {
  margin: 0;
  font-family: var(--font-sans);
}

.scheduled-call-card li p:first-child {
  font-size: 12px;
  color: var(--mb-70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.scheduled-call-card li p:last-child {
  font-size: 16px;
  color: var(--dc-greys-900);
  font-weight: 500;
}

.cancel-request-button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--mb-70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.cancel-request-button:hover {
  color: var(--status-red);
}

/* When an option is selected, show the selected value in a different style */
.schedule-selector-dropdown option {
  background: white;
  color: #1f2937;
  font-size: 14px;
  padding: 8px;
  text-transform: none;
  letter-spacing: normal;
}

.schedule-selector-dropdown option:first-child {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-600, #6b7280);
}