/* Sistema de notificaciones VOCCI - Estilo global para todas las páginas */

:root {
  --primary-color: #000000;
  --secondary-color: #000000;
  --accent-color: #3b82f6;
  --text-color: #abaeb5;
  --text-secondary: #cccccc;
  --border-color: #333333;
}

/* Estilos para el dropdown de notificaciones */
.vocci-notification-dropdown {
  background: #1a1a1a;
  border-radius: 12px;
  width: 400px;
  max-height: 380px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.vocci-notification-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border-color);
  background: #2d2d2d;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vocci-notification-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.vocci-notification-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-color);
  animation: borderPulse 2s infinite;
  border-right: 3px solid transparent;
}

@keyframes borderPulse {
  0% {
    border-right-color: transparent;
  }
  50% {
    border-right-color: var(--accent-color);
  }
  100% {
    border-right-color: transparent;
  }
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
  color: var(--text-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.vocci-notification-empty p {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.vocci-notification-empty span {
  font-size: 14px;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
  .vocci-notification-dropdown {
    width: 350px;
  }
}

@media (max-width: 480px) {
  .vocci-notification-dropdown {
    width: 320px;
    max-height: 350px;
  }
}