/* ================================
   BREADCRUMB
   ================================ */
nav[aria-label="breadcrumb"] a {
  text-decoration: none;
}
nav[aria-label="breadcrumb"] a:hover {
  text-decoration: underline;
}


/* ================================
   LISTA DA ÁRVORE
   ================================ */
.clickable {
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.clickable:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


/* ================================
   WRAPPER TOUCH + SCROLL
   ================================ */
.lista-touch-wrapper {
  position: relative;
}


/* ================================
   CONTAINER COM ROLAGEM
   ================================ */
.lista-scroll {
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 6px;
  border-right: 2px solid #e5e7eb;

  /* Firefox */
  scrollbar-width: thick;
  scrollbar-color: #2563eb #e5e7eb;

  /* Touch */
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  touch-action: pan-y;

  position: relative;
}


/* ================================
   SCROLLBAR — Chrome / Edge / Safari
   ================================ */
.lista-scroll::-webkit-scrollbar {
  width: 14px;
}

.lista-scroll::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

.lista-scroll::-webkit-scrollbar-thumb {
  background-color: #2563eb;
  border-radius: 10px;
  border: 3px solid #e5e7eb;
}

.lista-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #1d4ed8;
}


/* ================================
   GRADIENTE INDICATIVO (continua)
   ================================ */
.lista-scroll::after {
  content: "";
  position: sticky;
  bottom: 0;
  display: block;
  height: 24px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}


/* ================================
   SETINHAS DE ROLAGEM (TOUCH)
   ================================ */
.scroll-btn {
  position: absolute;
  right: -52px;
  width: 44px;
  height: 44px;
  border-radius: 50%;

  border: none;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  touch-action: manipulation;
}

.scroll-btn:active {
  transform: scale(0.95);
}

.scroll-up {
  top: 0;
}

.scroll-down {
  bottom: 0;
}

/* ================================
   LISTA DE PESSOAS (AZUL SUAVE)
   ================================ */
.entrega-lista {
  margin-top: 8px;
  padding: 0;
}


/* item */
.entrega-item {
  background-color: #eaf2ff;
  border: 1px solid #cfe0ff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}


/* linha interna */
.entrega-linha {
  display: flex;
  align-items: center;
  width: 100%;
}


/* nome */
.entrega-pessoa {
  color: #1f2937;
  font-weight: 500;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* telefone */
.entrega-telefone {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: bold;
  color: #4b5563;
  white-space: nowrap;
}
