  .radio-inputs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background-color: #EEE;
    padding: 0.5rem;
    border-radius: 0.5rem;
    max-width: 300px;
    margin: auto;
  }

  .radio {
    text-align: center;
  }

  .radio input {
    display: none;
  }

  .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    padding: 0.5rem 1rem;
    background-color: white;
    color: rgba(51, 65, 85, 1);
    transition: all 0.15s ease-in-out;
  }

  .radio input:checked + .name {
    background-color: #086d81;
    color: white;
    font-weight: 600;
  }

  .image-container {
    text-align: center;
    margin-top: 1rem;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    margin: 0.5rem auto;
  }