body {
    font-family: Roboto, Arial;
    margin: 0px;
    background-color: #2F3237;
    color: white;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

main {
    margin-left: 30px;
    background-color: #3C3F44;
    width: 70%;
    padding: 10px;
    border-radius: 10px;
}

a {
    color: white;
    text-decoration: underline;
}

select {
    background-color: #2C2F33;
    color: #FFFFFF;
    border: 1px solid #23272A;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}

select:hover {
    border-color: #7289DA;
}

select option {
    background-color: #2C2F33;
    color: #FFFFFF;
}

input {
    background-color: #2C2F33;
    color: #FFFFFF;
    border: 1px solid #23272A;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    background-color: transparent;
    color: white;
  }

.fee-warning {
    background-color: #FFD700;
    color: #1B1B1B;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.fee-warning strong {
    font-weight: bold;
}
.fee-warning u {
    text-decoration: underline dotted;
}

  