/* OPMAAK VOOR KNOP */
.vhds-brochure-button {
    background-color: #111827;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-block;
}

.vhds-brochure-button:hover {
    background-color: #374151;
}


/* OPMAAK VOOR INVULVENSTER */
.vhds-brochure-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.vhds-brochure-modal-content {
    background: #fff;
    padding: 30px 25px;   
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.vhds-brochure-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.vhds-brochure-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}

.vhds-brochure-modal-content input[type="email"] {
    width: 100%;
    padding: 12px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.vhds-brochure-modal-content button.vhds-brochure-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #111827;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.vhds-brochure-modal-content button.vhds-brochure-submit:hover {
    background-color: #374151;
}

.vhds-brochure-msg {
    margin-top: 10px;
    font-size: 14px;
}
