/* Bestand: css/contact-form-messages.css */

.form-message {
    display: none; /* Standaard verborgen */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Stijl voor de verzendknop als hij bezig is */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #999;
}