
.adventurehub-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}
.adventurehub-form-container label {
    font-weight: bold;
}
.adventurehub-form-container input[type="text"],
.adventurehub-form-container input[type="email"],
.adventurehub-form-container select,
.adventurehub-form-container input[type="file"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.adventurehub-form-container .button-primary {
    background: #1a3c34;
    border-color: #1a3c34;
    color: #fff;
}
.progress-bar-container {
    width: 100%;
    background: #ddd;
    border-radius: 5px;
    margin: 10px 0;
}
.progress-bar {
    width: 0;
    height: 20px;
    background: #1a3c34;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}
#form-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}
#form-message.success {
    background: #d4edda;
    color: #155724;
}
#form-message.error {
    background: #f8d7da;
    color: #721c24;
}
