/* Notification Popup Styles */
.notification-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: all 0.3s ease;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-popup {
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #666;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.notification-close:hover {
    background: #333;
}

.notification-content {
    display: flex;
    min-height: 500px;
}

.notification-left {
    flex: 1.2;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.notification-right {
    flex: 0.8;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
}

.notification-left h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.notification-image-container {
    text-align: center;
    margin: 20px 0;
}

.notification-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.notification-info {
    margin-top: 30px;
}

.info-section {
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.info-section p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.info-section strong {
    color: #333;
}

.notification-right h3 {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.notification-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    border: none;
    cursor: pointer;
}

.notification-button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.notification-button:active {
    transform: translateY(0);
}

/* WhatsApp Icon */
.whatsapp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #25D366;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
}

.whatsapp-icon::before {
    content: "📱";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-popup {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .notification-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .notification-left,
    .notification-right {
        padding: 20px;
    }
    
    .notification-left h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .notification-right h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .notification-image {
        max-width: 150px;
    }
    
    .notification-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .notification-popup {
        width: 98%;
        margin: 5px;
    }
    
    .notification-left,
    .notification-right {
        padding: 15px;
    }
    
    .notification-left h3 {
        font-size: 20px;
    }
    
    .notification-right h3 {
        font-size: 18px;
    }
    
    .info-section {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .info-section h4 {
        font-size: 14px;
    }
    
    .info-section p {
        font-size: 12px;
    }
}

/* Animation for popup appearance */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notification-overlay.show .notification-popup {
    animation: popupSlideIn 0.4s ease-out;
}

/* Custom scrollbar for popup content */
.notification-popup::-webkit-scrollbar {
    width: 8px;
}

.notification-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.notification-popup::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

.notification-popup::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}




