/* Notification Styles */
.notification-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-right: 10px;   font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
 
  font-style: normal;
}

.notification-btn i {
  font-size: 20px;
  color: white;
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e74c3c;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.user-notification-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: -100px;
  width: 320px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  overflow: hidden;
  display: none;
  animation: fadeIn 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-height: 400px;
  display: none;
}

.user-notification-dropdown.show {
  display: block;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background-color: #f8f9fa;
}

.notification-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.notification-header button {
  background: none;
  border: none;
  color: #4f46e5;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

.notification-list {
  max-height: 350px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}

.notification-item:hover {
  background-color: #f5f5f5;
}

.notification-item.unread {
  background-color: rgba(79, 70, 229, 0.05);
}

.notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.notification-icon.info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.notification-icon.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.notification-icon.warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.notification-icon.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.notification-icon i {
  font-size: 18px;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.notification-message {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.notification-time {
  font-size: 11px;
  color: #999;
}

.notification-empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

@media (max-width: 576px) {
  .user-notification-dropdown {
    width: 280px;
    right: -120px;
  }
}
