.tiktok-btn,
.google-maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* para que no meta espacio innecesario */
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 40px;
  border-radius: 8px;
  box-shadow: none;
}

.tiktok-btn img,
.google-maps-btn img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}


.tiktok-btn:hover img,
.google-maps-btn:hover img {
    transform: scale(1.05);
    border-radius: 14px;
}


.popup-btn-img {
    width: 150px;   /* Ajusta a tu gusto */
    height: auto;
    display: block;
}


.buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-direction: column;
}

.route-btn {
    width: auto;
    min-width: 250px;
    max-width: 350px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    background-color: #007bff; /* azul principal */
    color: white; /* ✅ siempre blanco */
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    text-align: center;
}

@media screen and (max-width: 480px) {
    .route-btn {
        width: 80%;
    }
}

.route-btn:hover {
    background-color: #0056b3; /* solo se oscurece */
    color: white;
}

.route-btn.cancel {
    background-color: #dc3545; /* rojo de Bootstrap */
    color: white;
}

.route-btn.cancel:hover {
    background-color: #a21a27; /* Oscurecer al pasar el mouse */
}



.addStop-btn {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    max-width: 250px;
    text-align: center;
    cursor: pointer;
}

.addStop-btn:hover {
    background-color: #0056b3;
}

.cancelStop-btn {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    max-width: 250px;
    text-align: center;
    cursor: pointer;
}

.cancelStop-btn:hover {
    background-color: #a21a27;
}



.share-route-btn {
    background-color: #53a967; /* Verde Bootstrap */
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.share-route-btn:hover {
    background-color: #1e7e34; /* Verde más oscuro al hacer hover */
}
