/* Hele pagina centreren zonder WP header te beïnvloeden */
.bbq-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: #f3f3f3;
}

/* Formulier container */
.bbq-container {
    background: white;
    width: 420px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Titel */
.bbq-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

/* Labels */
.bbq-container label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
}

/* Inputs, selects, textarea */
.bbq-container input,
.bbq-container select,
.bbq-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.bbq-container textarea {
    height: 90px;
    resize: none;
}

/* Button */
.bbq-container button {
    width: 100%;
    padding: 14px;
    background: #006fba;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
}

.bbq-container button:hover {
    background: #01558dd0;
}
