/* Notification styles */
.notification-unread {
  background-color: #f8f9fa !important;
  border-left: 3px solid #007bff !important;
}

.user-avtar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.bg-light-success { background-color: #d1edff !important; color: #0f5132 !important; }
.bg-light-primary { background-color: #e7f3ff !important; color: #084298 !important; }
.bg-light-danger { background-color: #ffe7e7 !important; color: #842029 !important; }
.bg-light-warning { background-color: #fff4e6 !important; color: #664d03 !important; }
.bg-light-secondary { background-color: #f8f9fa !important; color: #41464b !important; }

.header-notification-scroll {
  max-height: calc(100vh - 215px);
  overflow-y: auto;
}

.pc-h-badge {
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -2px;
  right: -6px;
}

.dropdown-notification {
  min-width: 320px;
  max-width: 400px;
}

.list-group-item.notification-item:hover {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}

/* Notification animations */
@keyframes notificationPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.notification-new-badge {
  animation: notificationPulse 2s infinite;
}
