.container {
      max-width: 500px;
      margin: auto;
      background: #2b2b2b;
      padding: 25px;
      border-radius: 12px;
    }

    h1 {
      text-align: center;
    }

    label {
      display: block;
      margin-top: 15px;
    }

    input, select, button {
      width: 80%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 6px;
      border: none;
      font-size: 16px;
      background-color: #1b1b1b;
      color: white;
    }

    button {
      margin-top: 20px;
      background: #007bff;
      color: white;
      cursor: pointer;
    }

    button:hover {
      background: #005ecb;
    }

    .result {
      margin-top: 20px;
      padding: 15px;
      background: #1b1b1b;
      border-radius: 8px;
    }

.info-card {
    background-color: #1f1f1f;
    border: 1px solid #444;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    transition: 0.2s ease;

    margin: 20px;
    box-sizing: border-box;
}

select {
  background-color: black;
  color: white;
}