.semaforo {
    display: inline-block; 
    align-items: center;
    width: 80px;
    height: 160px; /* Ajusta la altura según tus preferencias */
    margin: 50px auto;
    background-color: #333;
    padding: 10px;
    border-radius: 20px;
}

.circulo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

#rojo {
    background-color: red;
}

#verde {
    background-color: green;
}

.traffic-light {
    display: inline-block;
    height: 130px;
    width: 70px;
    background-color: #333;
    border-radius: 20px;
    margin: 30px;
    position: relative;
}
.traffic-light-title {
    position: absolute;
    top: -30px;
    width: 170px;
    left: -50px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}
.bulb {
    height: 50px;
    width: 50px;
    background-color: #111;
    border-radius: 50%;
    margin: 10px auto;
    transition: background 500ms;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255);
    z-index: 1000; 
  }
  
  .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  #nofound {
    display: none;
  }