/* Стили уведомления о новых инструкциях */
.new-notify-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #333;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #4f46e5;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateY(100px); /* Скрыто внизу */
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 9999;
  cursor: pointer;
  max-width: 350px;
}

.new-notify-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.new-notify-content {
  flex: 1;
}

.new-notify-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #111827;
}

.new-notify-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.new-notify-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
}

.new-notify-close:hover {
  color: #4b5563;
}
