/* Overlay */
.villegas-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    z-index: 9999; /* Ensure it sits on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Container */
.villegas-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    position: relative; /* For Close Button positioning */
}

/* Close Button */
.villegas-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.villegas-popup-close:hover {
    color: #000;
}

/* Message Content */
.villegas-popup-message {
    margin-top: 20px;
}
