/* Popup Styles */
#emoall-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#emoall-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

#emoall-popup-container {
    background-color: white;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#emoall-popup-overlay.active #emoall-popup-container {
    transform: scale(1);
}

#emoall-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-weight: bold;
}

#emoall-popup-close:hover {
    color: #007bff;
}

#emoall-popup-content {
    padding: 30px;
    padding-top: 45px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: center; /* Center content */
}

#emoall-popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    text-align: center; /* Center title */
}

#emoall-popup-content p {
    margin-bottom: 15px;
    text-align: center; /* Center paragraph */
}

#emoall-popup-content a {
    color: #007bff;
    text-decoration: none;
}

#emoall-popup-content a:hover {
    text-decoration: underline;
}

#emoall-popup-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center image */
}

#emoall-popup-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

#emoall-popup-content table th,
#emoall-popup-content table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#emoall-popup-content table th {
    background-color: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #emoall-popup-container {
        width: 95vw;
        max-height: 95vh;
        padding: 0;
    }
    
    #emoall-popup-content {
        padding: 20px;
        padding-top: 35px;
    }
    
    #emoall-popup-close {
        top: 10px;
        right: 10px;
    }
    
    #emoall-popup-content h2 {
        font-size: 20px;
    }
}