html, body {
    font-family: Tahoma, sans-serif;
    font-size: 16px;
}
.logo-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
}

.logo-container img {
    max-width: 100px;
    max-height: 100px;
}

.menu-visible {
    display: flex;
    position: relative;
    align-items: flex-end;
    z-index: 1000;
}

.mi-tooltip {
    background-color: white;
    color: black;
    font-size: 18px;
    padding: 6px;
    margin-left: 30px;
}
  
@keyframes destello {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.destello-animado {
    animation: destello 2s infinite;
}
#logo-luse {
    display: flex;
    position: relative;
    align-items: flex-end;
    left: 20px; 
    bottom: 20px; 
    z-index: 1000;
}
#logo-luse img{
    max-width: 50px;
    max-height: 50px;
    margin-right: 20px;
}
.contenedor-contadores {
    position: absolute;
    top: 12px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    padding-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none;
    z-index: 1001;
}
.contador-kilometros{
    padding: 5px;
    line-height: 1.5;
    margin: 10px;
}
.contador {
    margin-bottom: 20px;
}

.contador label {
    margin-right: 5px;
}
select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin: 5px;
    cursor: pointer;
    font-size: 18px;
}

select:hover {
    border-color: #888;
}

select:focus {
    border-color: #555;
    outline: none;
}

.contenedor-telemetria {
    display: none;
    position: absolute;
    bottom: 120px;
    left: 120px;
    z-index: 1000;
    width: 225px;
    vertical-align: -webkit-baseline-middle;
}

.contenedor-telemetria label{
    background-color: transparent;
    border-radius: 5px;
    padding: 10px;
}

.tipo-telemetria {
    display: flex;
    align-items: center;
    margin: 10px;
    justify-content: space-between;
}
.tipo-telemetria label{
    margin-right: 10px;
}

.destello-container {
    margin-right: 20px;
}

.destello-container img {
    width: 50px;
    height: auto;
}

#imagen-luse{
    border-radius: 50%;
    background-color: white;
    padding: 5px;
}
.menu-oculto {
    display: none;
    position: absolute;
    left: 100%; 
    top: 0;
    bottom: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}
#logo-y-menu {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}
#tablaContadores {
    display: none;
    position: absolute;
    top: 12px;
    left: 60px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-radius: 5px;
    vertical-align: -webkit-baseline-middle;
}

#tablaContadores th, #tablaContadores td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#tablaContadores th {
    background-color: #f4f4f4, 50%;
    color: #333;
}
#tablaContadores img{
    margin-right: 5px;
}

.nombre-comunidad {
    word-break: break-word;
    max-width: 100px;
}
@keyframes yellowPulse {
    0%, 100% {
        color: black;
    }
    50% {
        color: yellow;
    }
}

.yellow-animation {
    animation: yellowPulse 2s ease;
}
@keyframes bluePulse {
    0%, 100% {
        color: black;
    }
    50% {
        color: blue;
    }
}

.blue-animation {
    animation: bluePulse 2s ease;
}

@keyframes fuchsiaPulse {
    0%, 100% {
        color: black;
    }
    50% {
        color: fuchsia;
    }
}

.fuchsia-animation {
    animation: fuchsiaPulse 2s ease;
}

@keyframes greenPulse {
    0%, 100% {
        color: black;
    }
    50% {
        color: green;
    }
}

.green-animation {
    animation: greenPulse 2s ease;
}

@keyframes boldPulse {
    0%, 100% {
        font-weight: normal;
    }
    50% {
        font-weight: bold;
    }
}

.bold-animation {
    animation: boldPulse 2s ease;
}

.contadores-kilometros {
    display: none;
    position: absolute;
    top: 370px;
    right: 12px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-radius: 5px;
    vertical-align: -webkit-baseline-middle;
}

.popup-ciudad {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    z-index: 1000;
    text-align: center;
    transition: opacity 0.5s; 
    border-radius: 10px;
}

.popup-ciudad img {
    width: 100px;
    height: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.popup-entrar {
    animation: fadeIn 0.5s forwards;
}

.popup-salir {
    animation: fadeOut 0.5s forwards;
}

#listaCiudades {
    display: none;
    position: absolute;
    bottom: 150px;
    right: 12px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    vertical-align: -webkit-baseline-middle;
    padding: 10px;
}

.barra-progreso-contenedor{
    width: -webkit-fill-available;
    background-color: #ddd; 
    display: none;
    position: absolute;
    bottom: 0px;

    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px;
}

.inicio-sesion {
    position: fixed; 
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; 
    width: 300px;
    box-sizing: border-box; 
}

.campo-formulario {
    margin-bottom: 15px; 
}

.campo-formulario label {
    display: block;
    margin-bottom: 5px; 
}

.campo-formulario input {
    width: 93%; 
    padding: 8px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
}

button[type="submit"] {
    width: 100%; 
    padding: 10px; 
    background-color: #007bff; 
    color: white; 
    border: none; 
    border-radius: 4px;
    cursor: pointer; 
    margin-top: 10px; 
}

button[type="submit"]:hover {
    background-color: #0056b3; 
}

.barra-progreso-contenedor {
    width: -webkit-fill-available;
    display: none;
    align-items: center;
    justify-content: space-between;

}

.barra-progreso {
    flex-grow: 1;
    height: 30px;
    background-color: green;
    border-radius: 15px;
}

.texto-progreso, .ciudad-destino, .punto-partida {
    color: black;
    line-height: 30px;
    margin: 0 8px;
    width: auto;
}

.texto-progreso {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-weight: bold;
}

.ciudad-destino, .punto-partida {
    text-align: right;
}

.ciudad-destino{
    float: right;
}
.punto-partida {
    text-align: left;
    float: left;
}
