
/* Existing styles */

/* General form styles */
.huurder-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Label styles */
.huurder-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Input, select, textarea styles */
.huurder-form input,
.huurder-form select,
.huurder-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Button styles */
.huurder-form button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 3px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.huurder-form button:hover {
    background-color: #0056b3;
}

/* Huurder Toevoegen button specific style */
.huurder-toevoegen {
    width: 100%;
    background-color: #28a745;
}

.huurder-toevoegen:hover {
    background-color: #218838;
}
