<style>
.mt-selector-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: #001154;
  font-family: "Inter", sans-serif;
  width: 100%;
  text-align: center;
}

.mt-selector-content {
  max-width: 700px;
  color: #fff;
  margin-bottom: 1.5rem;
}

.mt-selector-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mt-selector-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.mt-selector-form { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; background: #001154; padding: 1rem 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.mt-selector-form label {
  font-weight: 600;
  color: #fff;
}

.select-wrapper {
  position: relative;
}

select {
  appearance: none;
  background: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 350px;
  min-height:55px;
  line-height: 1rem;
  height: 100px;
}

select:focus,
select:active,
select option:checked {
  border: 2px solid #34a742;
  background-color: #e8f8ed;
  box-shadow: 0 0 0 2px rgba(52, 167, 66, 0.4);
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #34a742;
  pointer-events: none;
  font-size: 0.8rem;
}

button {
  background: #ccc;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: not-allowed;
  transition: all 0.3s ease;
  height: 50px;
}

button.active {
  background: #34a742;
  cursor: pointer;
}

button.active:hover {
  background: #2d9139;
}

@media (max-width: 600px) {
  .mt-selector-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 50px;
    padding: 1.5rem;
  }

  label {
    text-align: left;
  }

  select, button {
    width: 100%;
  }
}
</style>