/* Modal Overlay */
.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 999999; /* Increased z-index */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content Box */
.wa-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999999;
}

.wa-modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

/* Close Button */
.wa-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #888;
}

.wa-modal-close:hover {
    color: #333;
}

/* Form Styles */
.wa-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.wa-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.wa-form-group input,
.wa-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}

.wa-submit-btn {
    background-color: #25D366;
    color: #fff;
    width: 100%;
    margin-top: 10px;
}

.wa-trigger-btn {
    background-color: #25D366;
    color: #fff;
}