.notification-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 16px;
  /* cursor: pointer; */
  transition: all 0.2s ease;
  border-radius: 10px;
  font-family: "DINRegular";
}

.notification-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.notification-item.unread {
  background: #1a1a2e;
  border-color: rgba(245, 72, 77, 0.3);
}

.notification-item.unread {
  border-left: 6px solid #f5484d;
}
/* Dark theme adjustments */
.dark-mode-active .notification-item {
  background: rgba(255, 255, 255, 0.05);
}

.dark-mode-active .notification-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Rumble Green for notification links */
.notification-link {
  color: #b9ff66 !important;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notification-link:hover {
  color: #a3e655 !important;
  text-decoration: underline;
}

/* Override Bootstrap text-danger in notifications - deprecated, use notification-link instead */
.notification-item .text-danger {
  color: #b9ff66 !important;
}
button.notification-global-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 0px;
  border-radius: 5px;
  padding: 5px 10px 5px 10px;
  color: #f3f3f3;
  font-family: "DIN Next LT Pro";
  font-size: 12px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .notification-system {
    padding: 15px;
  }

  .notification-item {
    padding: 12px;
  }
}

/* Mobile optimizations */
@media (max-width: 767px) {
  /* Ottimizza layout dei pulsanti */
  .notifications-section .notification-global-btn {
    padding: 8px !important;
    font-size: 0 !important; /* Nasconde il testo */
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Mostra solo le icone */
  .notifications-section .notification-global-btn svg {
    font-size: 16px !important;
    margin: 0 !important;
  }

  /* Ottimizza il box contenitore */
  .notifications-section .MuiBox-root[style*="space-between"] {
    gap: 8px;
  }

  /* Riduci margine del box dei pulsanti */
  .notifications-section .MuiBox-root[style*="space-between"] > .MuiBox-root:last-child {
    margin-left: 8px !important;
  }
}

/* ============================================ */
/* QUICK ACTION BUTTONS FOR MODERATION */
/* ============================================ */

.notification-quick-actions {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.notification-quick-actions .btn,
.quick-action-btn {
  font-size: 11px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.notification-quick-actions .btn svg,
.quick-action-btn svg {
  font-size: 10px;
}

.notification-quick-actions .btn-success,
.quick-action-btn.btn-success {
  background-color: #4caf50;
  border-color: #4caf50;
}

.notification-quick-actions .btn-success:hover,
.quick-action-btn.btn-success:hover {
  background-color: #45a049;
  border-color: #45a049;
}

.notification-quick-actions .btn-danger,
.quick-action-btn.btn-danger {
  background-color: #f44336;
  border-color: #f44336;
}

.notification-quick-actions .btn-danger:hover,
.quick-action-btn.btn-danger:hover {
  background-color: #e53935;
  border-color: #e53935;
}

.notification-quick-actions .btn-secondary,
.quick-action-btn.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.notification-quick-actions .btn-secondary:hover,
.quick-action-btn.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

.notification-quick-actions .btn:disabled,
.quick-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mobile optimizations for quick actions */
@media (max-width: 767px) {
  .notification-quick-actions {
    padding-top: 6px;
    margin-top: 6px;
  }

  .notification-quick-actions .btn,
  .quick-action-btn {
    font-size: 10px;
    padding: 3px 8px;
  }
}
