.btn_loader {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Container */
.trigger_notify_box {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 50000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Notificação */
.trigger_notify {
  position: relative;
  min-width: 280px;
  max-width: 320px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trigger_notify:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2), 0 6px 15px rgba(0,0,0,0.15);
}

/* Variações de cor - Paleta moderna */
.trigger_success { 
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: rgba(255,255,255,0.15);
}

.trigger_error { 
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-color: rgba(255,255,255,0.15);
}

.trigger_warning { 
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}

.trigger_info { 
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: rgba(255,255,255,0.15);
}

/* Barra de tempo */
.trigger_notify_time {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Ícone dentro da mensagem (se usar font-icon) */
.trigger_notify:before {
  margin-right: 6px;
}


.dash_alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 400;
}

.dash_alert_info {
    background: hsl(142 70% 45% / .05);
    color: #222222;
    border: 1px solid hsl(142 70% 45% / .2);
}

.dash_alert_warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.dash_alert_error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.dash_alert_icon {
    font-size: 1.3rem;
}

.form-disabled {
    opacity: 0.6;
    pointer-events: none;
}