/* Fullscreen overlay */
.vmedd-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

/* Centered modal popup */
.vmedd-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 90%;
    max-width: 400px;
    font-family: system-ui, sans-serif;
    text-align: center;
}

/* Container holding the two buttons */
.vmedd-popup > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center as group */
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Buttons */
.vmedd-popup button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #008A69;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

/* On hover */
.vmedd-popup button:hover {
    background-color: #005e8a;
}
