/* General Reset for Modal Scope */
.elw-modal, .elw-modal * {
    all: initial;
    box-sizing: border-box;
}

/* Modal Wrapper */
.elw-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: sans-serif;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.elw-modal-content {
    all: unset;
    display: block;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    color: #333;
}

/* Headline */
.elw-modal-content h2 {
    all: unset;
    display: block;
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #222;
}

/* Paragraph */
.elw-modal-content p {
    all: unset;
    display: block;
    font-size: 16px;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Button Group */
.elw-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Buttons */
.elw-buttons button {
    all: unset;
    cursor: pointer;
    padding: 0.6rem 1.4rem;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    text-align: center;
    font-weight: 600;
    transition: background 0.2s ease-in-out;
}

#elw-continue {
    background-color: #0073aa;
    color: #fff;
}

#elw-continue:hover {
    background-color: #005f8d;
}

#elw-cancel {
    background-color: #e0e0e0;
    color: #333;
}

#elw-cancel:hover {
    background-color: #ccc;
}
