/* css styles */

.venue-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.venue-form input,
.venue-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.venue-form button {
    background-color: #0055a5;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.venue-form button:hover {
    background-color: #003d7a;
}