/* -------------------------------------------------------------------
   RECENT NOTIFICATIONS COMPONENT STYLING
------------------------------------------------------------------- */

.recent-notifs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-notif-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.recent-notif-item:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateX(3px);
}

.recent-notif-item.unread {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  border-left: 3px solid #2563eb;
}

.notif-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.notif-item-body {
  flex: 1;
}

.notif-item-msg {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.2rem 0;
  line-height: 1.4;
}

.notif-item-sub {
  font-size: 0.75rem;
  color: #64748b;
}

.notif-item-sub strong {
  color: #0f2b5c;
}

.notif-arrow {
  font-size: 1.25rem;
  color: #94a3b8;
}
