.sh-button{
  background-color: #00bf63;
  cursor: pointer;
}

.sh-button:hover{
  color:#fff!important;
  background-color:#569f6f!important;
}

.sh-pointer{
  cursor: pointer;
}

#map { height: 80vh; border-radius: 8px; }
/*Display do canto superior direito*/
@keyframes piscarAzul {
  0% { background-color: #2196F3; color: white; }
  50% { background-color: white; color: black; }
  100% { background-color: #2196F3; color: white; }
}
.piscar {
  animation: piscarAzul 0.6s ease;
}

.leaflet-div-icon {
  background: transparent;
  border: none;
}
.pin {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: #000;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -14px 0 0 -14px;
}
.pin i {
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 6px;
  color: white;
}

/* Botão GPS Azul Tech */
.botao-gps-azul {
  background: linear-gradient(to bottom, #00aaff, #0066cc);
  border: 3px solid #002a66;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #b3e7ff,
              inset 0 0 0 6px #00aaff,
              0 4px 10px rgba(0, 0, 0, 0.6);
  color: #eaf7ff;
  font-family: 'Cinzel', serif;
  font-size: 1.1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.botao-gps-azul:hover {
  transform: scale(1.07);
  background: linear-gradient(to bottom, #33bbff, #0088ff);
  box-shadow: inset 0 0 0 2px #d7f4ff,
              inset 0 0 0 6px #33bbff,
              0 6px 14px rgba(0, 180, 255, 0.5);
}

.botao-gps-azul:active {
  transform: scale(0.98);
}

/* ===== Modal de Configuração =====
/* Estilo das abas */
.aba-config {
  transition: background 0.2s;
}
.aba-config:hover {
  background: #e3f2fd;
}
.aba-config.ativa {
  background: #bbdefb;
  border-bottom: 3px solid #1976d2;
  font-weight: bold;
}

/* Células editáveis */
[contenteditable="true"] {
  background: #fffef0;
  border-radius: 4px;
  padding: 2px 4px;
  outline: none;
}
[contenteditable="true"]:focus {
  background: #ffffcc;
  box-shadow: 0 0 3px #1976d2;
}

/* Abas da janela modal de configuração com rolagem interna e melhor aproveitamento do espaço */
.conteudo-aba-config {
  display: none;
  overflow: auto;
  height: calc(100vh - 170px); /* 100% da tela menos a barra superior + botões inferiores */
}
.conteudo-aba-config::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
.conteudo-aba-config::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}