/**
 * Statix Core — Centrale styles voor formulieren en meldingen
 * Button styles zijn verplaatst naar child theme style.css
 */

/* ================================
   1. FORMULIEREN
   ================================ */

.statix-form-row {
    margin-bottom: 18px;
}

.statix-form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.statix-form-row input,
.statix-form-row select,
.statix-form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
}

.statix-form-row input:focus,
.statix-form-row select:focus,
.statix-form-row textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.12);
}

/* ================================
   5. MELDINGEN
   ================================ */

.statix-form-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.statix-form-message.success {
    display: block;
    background: #e6f7e6;
    color: #2a7a2a;
    border: 1px solid #b8e0b8;
}

.statix-form-message.error {
    display: block;
    background: #fce8e8;
    color: #a52a2a;
    border: 1px solid #f0b0b0;
}
