.voluntary-box {
    max-width: 600px;
    margin: 3rem auto;
    background-color: var(--glass-light);
    padding: 2rem;
    border-radius: 10px;
}

.dark-mode .voluntary-box {
    background-color: var(--glass-dark);
}

.voluntary-box h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

#voluntary-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

#voluntary-form input,
#voluntary-form textarea,
#voluntary-form select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--text-light);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--bg-light);
    color: var(--text-light);
}

.dark-mode #voluntary-form input,
.dark-mode #voluntary-form textarea {
    border: 1px solid var(--text-dark);
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

#voluntary-form textarea {
    resize: vertical;
}

#voluntary-form button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#voluntary-form button:hover {
    background-color: rgb(0, 128, 255);
}

#status-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
}