.notification-popup {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #ffffff;
border: 2px solid #4CAF50;
border-radius: 8px;
padding: 15px;
width:400px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 1000;
animation: pulse 2s infinite;
cursor: pointer;
margin-bottom: 10px;
}
a.invoice_notificbox_link{
text-decoration: none;
}
/* Pulse animation for highlighting */
@keyframes pulse {
0% {
border-color: #4CAF50;
transform: scale(1);
}
50% {
border-color: #ff9800;
transform: scale(1.05);
}
100% {
border-color: #4CAF50;
transform: scale(1);
}
}

.notification-popup p {
margin: 5px 0;
font-size: 14px;
color: #333;
}

.notification-popup strong {
color: #4CAF50;
}

/* Close button */
.close-btn {
position: absolute;
top: 5px;
right: 10px;
color: #ff4444;
font-weight: bold;
cursor: pointer;
}