body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 100px;
    background: #e1f7e1; /* Light greenish background */
    color: #333;
}

.container {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #8bc34a; /* Greenish border */
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f1f8f1; /* Light green background for select */
}

button {
    background: #388e3c; /* Meshtastic-style green */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #2c6e28; /* Darker green when hovered */
}

#status {
    margin-top: 20px;
    font-size: 18px;
    color: #388e3c; /* Green text for status */
}
.sponsor {
    margin-top: 30px;
    font-size: 16px;
    color: #333;
}

.sponsor a {
    color: #388e3c; /* Meshtastic-style green */
    text-decoration: none;
    font-weight: bold;
}

.sponsor a:hover {
    color: #2c6e28; /* Darker green on hover */
}
