* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Estilos base para selector y botón */
select,
button {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  padding: 0;
  border-radius: 8px;
  border: none;
  height: 48px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  min-width: 220px;
}

select {
  background-color: #00953b;
  color: white;
  padding: 0.7rem 2.5rem 0.7rem 1.5rem; /* top-right-bottom-left */
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
}

/* Flecha del select */
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem; /* Ajusta la posición de la flecha con respecto al borde derecho */
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

button {
  background-color: #00953b;
  color: white;
  cursor: pointer;
  margin: 0 0 0 1rem;
  width: 130px;
}

button:hover {
  background-color: #4eab64;
}

@media (max-width: 600px) {
  .select-wrapper {
    display: block;
    margin: 0 auto;
  }

  button {
    display: block;
    margin: 1rem auto 0 auto;
  }
}
