.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.truck-icon.highlight {
  animation: pulse-highlight 1s infinite;
}

@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 0, 0);
  }
}

/*a {
  text-decoration: none !important;
  color: #000 !important;
}
*/

a {
  text-decoration: none !important;
}


.container-signin {
  display: flex;
}

.half-signup,
.half-signin {
  flex: 1;
  height: 100vh;
}

.signin-img {
  background-image: url("/assets/background-login-6487a53e.webp");
  background-repeat: no-repeat;
  background-position: top-left;
  background-size: cover;
}

.password-container {
  position: relative;
}

#togglePassword {
  position: absolute;
  top: 5px; /* Ajuste a distância do ícone do campo de senha */
  right: 10px; /* Alinha o ícone à direita, dentro do container */
  font-size: 18px;
  color: #0F3544; /* Ajuste conforme sua cor preferida */
}

.form-control.input-signin {
  padding-right: 30px; /* Espaço à direita do campo para não sobrepor o ícone */
}

.authentication-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-height: 100vh;
    width: 100%
}

.authentication-wrapper .authentication-inner {
    width: 100%
}

.authentication-wrapper.authentication-1,
.authentication-wrapper.authentication-2,
.authentication-wrapper.authentication-4 {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.authentication-wrapper.authentication-1 .authentication-inner {
    max-width: 400px
}

.authentication-wrapper.authentication-2 .authentication-inner {
    max-width: 380px
}

.authentication-wrapper.authentication-3 {
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch
}

.authentication-wrapper.authentication-3 .authentication-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: stretch;
    justify-content: stretch
}

.authentication-wrapper.authentication-4 .authentication-inner {
    max-width: 800px
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .authentication-wrapper:after {
        content: '';
        display: block;
        -ms-flex: 0 0 0%;
        flex: 0 0 0%;
        min-height: inherit;
        width: 0;
        font-size: 0
    }
}


@media (max-width: 767.98px) {
  .container-signin {
    flex-direction: column;
  }

  .signin-img {
    display: none;
  }

  .half-signin {
    width: 100%;
    height: auto;
  }

  .authentication-wrapper {
    min-height: auto;
    padding: 40px 20px;
  }

  .authentication-inner {
    max-width: 100%;
  }

  .form-signin {
    width: 100%;
  }
}



.dropzone {
  border: 2px dashed #c9c9c9;
  border-radius: .5rem;
  padding: 1.5rem;
  text-align: center;
  transition: .15s ease-in-out;
}
.dropzone.dragover { border-color: #0d6efd; background: #f4f8ff; }
.link-like { color: #0d6efd; cursor: pointer; text-decoration: underline; }


.kanban-scroll{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.kanban-col{
  flex: 0 0 320px;       /* largura fixa por status */
  max-width: 320px;
  scroll-snap-align: start;
}

.kanban-column{
  min-height: 240px;
  max-height: calc(100vh - 260px); /* ajusta conforme seu header */
  overflow-y: auto;       /* scroll vertical dentro da coluna */
  padding: 2px;
}

.kanban-card{
  cursor: grab;
}

.kanban-card:active{
  cursor: grabbing;
}






/* corta qualquer vazamento */
#result-skeleton,
#result-skeleton .card,
#result-skeleton .card-body{
  overflow-x: hidden;
}

/* “tabela” em grid */
.sh-grid{
  display: grid;
  grid-template-columns: 36px 1.4fr .9fr .9fr .9fr .7fr 1fr 1.5fr .9fr 44px;
  column-gap: 12px;
  align-items: center;
  width: 100%;
}

/* header um pouco menor */
.sh-grid-header .sh-cell{
  height: 16px;
  opacity: .9;
}

/* células */
.sh-cell{
  height: 18px;
  border-radius: 6px;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,.06) 25%,
    rgba(0,0,0,.14) 37%,
    rgba(0,0,0,.06) 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.1s ease-in-out infinite;

  /* evita estourar */
  min-width: 0;
}

/* animação */
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

@media (max-width: 768px){
  .sh-grid{
    grid-template-columns: 36px 1.6fr 1fr 44px; /* simplificado */
  }
  /* esconde as “células extras” (5ª em diante) */
  .sh-grid .sh-cell:nth-child(n+5){
    display:none;
  }
}