/* Debug Banner Styles */
.debug-banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: white;
  padding: 10px 20px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideInRight 0.3s ease-out;
}

.debug-banner-content {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.debug-banner-label {
  font-weight: 600;
  opacity: 0.95;
}

.debug-banner-value {
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

/* Animación de entrada */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .debug-banner {
    padding: 8px 15px;
    font-size: 11px;
  }

  .debug-banner-content {
    gap: 6px;
  }

  .debug-banner-value {
    padding: 3px 8px;
  }
}

/* Hover effect opcional */
.debug-banner:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
  transition: all 0.2s ease;
}
