/* popupStyles.css */

.popup-container {
    position: fixed;
    top: 200px;
    right: 20px;
    z-index: 9999;
    display: none;
    max-width: 400px;
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.popup-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #1b5bb1 100%);
    padding: 20px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #333;
}

.popup-content h3::before {
    content: "🔔";
    font-size: 20px;
    margin-right: 8px;
    color: #4a90e2;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #000000;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

#contact-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #357abd;
}

.popup-content ul li {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.popup-content ul li:nth-child(1) { animation-delay: 0.1s; }
.popup-content ul li:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-content ul li:hover {
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
}
