body {
    padding-top: 10rem;
    background: #121213;
    color: #fff;
    font-family: 'JetBrains Mono';
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button {
    font-family: 'JetBrains Mono';
    background-color: #007ea0;
    color: white;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 1rem;
}

input {
    border-radius: 0.5rem;
    font-family: 'JetBrains Mono';
    align-self: end;
    margin-left: 1rem;
    color: black;
}

span {
    color: red;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.4); 
}

.modal-content {
  background-color: #161b22;
  color: white;
  font-family: 'JetBrains Mono';
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 1rem;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 16px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.download-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #00a500; /* Green */
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-family: 'JetBrains Mono';
}

.download-button:hover {
  background-color: #45a049; /* Darker green on hover */
}

strong {
  color: #45a049;
}