/* Popup Styles */
.csat-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.csat-popup-overlay.show {
    opacity: 1;
}

.csat-popup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.csat-popup-overlay.show .csat-popup {
    transform: scale(1);
}

.csat-popup-header {
    background: #1a1a1a;
    padding: 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #333;
}

.csat-popup-content {
    padding: 2rem;
    text-align: center;
    background: white;
}

.csat-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.csat-popup-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.csat-popup-icon {
    margin: 0;
}

.csat-popup-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.csat-popup-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.csat-popup-message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.csat-popup-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.csat-popup-button:hover {
    background-color: #0056b3;
}

/* Social emoji styles */
.footer__social-emoji {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer__social-emoji--very-happy {
    background-color: rgba(76, 175, 80, 0.2);
}

.footer__social-emoji--happy {
    background-color: rgba(33, 150, 243, 0.2);
}

.footer__social-emoji--neutral {
    background-color: rgba(255, 193, 7, 0.2);
}

.footer__social-emoji--angry {
    background-color: rgba(244, 67, 54, 0.2);
}

/* Social link hover effects */
.footer__social-link {
    transition: transform 0.2s ease;
    text-decoration: none;
}

.footer__social-link:hover {
    transform: translateY(-2px) scale(1.1);
}

.footer__social-link:hover .footer__social-emoji {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg);
}

.footer__social-link:hover .footer__social-emoji--very-happy {
    background-color: rgba(76, 175, 80, 0.4);
}

.footer__social-link:hover .footer__social-emoji--happy {
    background-color: rgba(33, 150, 243, 0.4);
}

.footer__social-link:hover .footer__social-emoji--neutral {
    background-color: rgba(255, 193, 7, 0.4);
}

.footer__social-link:hover .footer__social-emoji--angry {
    background-color: rgba(244, 67, 54, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .csat-popup {
        margin: 1rem;
    }

    .csat-popup-content {
        padding: 1.5rem;
    }
}
