/* Message Notification Styles - Optimized */

/* Badge on bottom navigation */
.message-notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* Toast notification */
.message-toast-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
  max-width: 350px;
  min-width: 280px;
}

.message-toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.message-toast-notification:hover {
  background: #252525;
  border-color: #FFD700;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon i {
  color: #0a0a0b;
  font-size: 18px;
}

.toast-text {
  flex: 1;
  min-width: 0;
}

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

.toast-message {
  color: #cccccc;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .message-toast-notification {
    top: 60px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
