
/* ===== TOAST NOTIFICATIONS (Padrão Admin) ===== */

/* Container para toasts - canto inferior esquerdo */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
  max-width: 400px;
}

.toast {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  transform: translateX(-400px);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid #64242E;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(-400px);
  opacity: 0;
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-message {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--text-dark);
}

/* Toast Types */
.toast.success { border-left-color: #28a745; }
.toast.success .toast-icon { color: #28a745; }

.toast.error { border-left-color: #dc3545; }
.toast.error .toast-icon { color: #dc3545; }

.toast.warning { border-left-color: #ffc107; }
.toast.warning .toast-icon { color: #ffc107; }

.toast.info { border-left-color: #17a2b8; }
.toast.info .toast-icon { color: #17a2b8; }

/* ===== DRAG-AND-DROP SORTABLE ===== */

.sortable-ghost {
  opacity: 0.4;
  background: #f1cc98 !important;
  border: 2px dashed #64242E !important;
}

.sortable-drag {
  opacity: 1;
  cursor: grabbing !important;
  transform: rotate(3deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
  z-index: 9999;
}

.order-card {
  cursor: grab;
  transition: all 0.2s;
}

.order-card:active {
  cursor: grabbing;
}
