.vipa-request-btn {
    padding: 20px 20px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    background: #e30613;
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* Overlay */
.vipa-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Popup */
.vipa-popup {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    animation: popupIn 0.25s ease-out;
}

@keyframes popupIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.vipa-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
}

/* Inputs */
.vipa-popup input,
.vipa-popup textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Datum speziell etwas höher */
.vipa-popup input[type="date"] {
    height: 48px;
}

/* Nachricht größer */
.vipa-popup textarea {
    min-height: 120px;
}

/* Checkbox links – Text rechts */
.vipa-dsgvo {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
}

.vipa-dsgvo input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.req {
    color: red;
    font-weight: bold;
}

/* Button */
#vipa-send {
    width: 100%;
    background: #e30613;
    border: none;
    padding: 12px;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

#vipa-response {
    margin-top: 10px;
    font-weight: bold;
}

.vipa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vipa-col label {
    font-weight: 600;
}

.vipa-col input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
