html {
    font-family: sans-serif;
}

.lineatemp {
    position: relative;
    width: 1000px;
    margin: 0 auto;
}

.fila {
    display: flex;
    justify-content: start;
    border-bottom: none; /* Eliminar borde inferior */
    position: relative;
    padding-bottom: 20px; /* Añadir espacio entre secciones */
}

.fila .disco {
    width: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
}

.fila .disco:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 2px);
    height: calc(100% + 20px); /* Ajustar altura para mantener la conexión */
    width: 3px;
    background: #80DEEA;
    z-index: -1;
}

.fila:first-child .disco:after {
    height: calc(50% + 10px); /* Ajustar altura para la primera fila */
    top: 50%;
}

.fila:last-child .disco:after {
    height: calc(50% + 10px); /* Ajustar altura para la última fila */
}

.fila .disco > div {
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: lightblue;
    box-sizing: border-box;
}

.fila:hover .disco > div {
    border: 3px solid red;
    background: white;
}

.fila div:nth-of-type(2) {
    width: 20%;
    padding: 4px;
    display: flex;
    align-items: center;
}

.fila div:nth-of-type(3) {
    width: 60%;
    padding: 4px;
}