/* 
 * Network Notification System - DISABLED
 * 
 * All text-based network notifications are hidden.
 * Only the no-wifi icon is used for network status indication.
 * Icon behavior:
 * - Poor connection: Blinking icon
 * - Critical connection: Stable icon
 */

/* Hide all network text messages - only icon is used */
.network-notification,
.notification-message,
#network-notification-container,
.network-warning-message {
  display: none !important;
}

/* Ensure all notification states are hidden */
.network-notification.notification-visible,
.network-notification.notification-hiding,
.network-notification.warning-poor,
.network-notification.warning-critical,
.network-notification.winking {
  display: none !important;
}

/* Network notification system (top-positioned, text-only) */
.network-notification {
  position: fixed;
  top: calc(3px + var(--sat));
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background-color: rgba(20, 20, 20, 0.85);
  border-radius: 0px;
  padding: 8px 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  text-align: center;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  width: 180px
}

/* Visible state */
.network-notification.notification-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Hiding animation */
.network-notification.notification-hiding {
  transform: translateX(-50%) translateY(-20px);
  opacity: 0;
}

/* Text styling */
.notification-message {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.2;
}

/* Warning levels */
.network-notification.warning-poor {
  background-color: #8B0000;
  border: 1px solid #FF6347;
}

.network-notification.warning-critical {
  background-color: #000000;
  border: 1px solid #FF0000;
}

@keyframes wink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.network-notification.winking {
  animation: wink 2s infinite;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .notification-message {
    font-size: 12px;
  }
}