
.race-info {
    text-align: center;
    margin-bottom: 20px;
}

.race-info h1 {
    font-size: 24px;
    margin: 0;
}

.race-info div {
    font-size: 18px;
    margin: 0;
}

.miniwindow {
    position: absolute;
    border-radius: 10px;    
    overflow: auto;
    width: 400px;
    height: 300px;
    float: left;
    text-align: center;
    padding: 2px 2px;
    border: 5px ridge rgba(255, 255, 255, 0.85);
    background: rgba(64, 64, 64, 0.90);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); 
}

.fingerPointer{
    cursor: pointer;
}

.fingerPointer:hover{
    background: rgba(255, 255, 255, 0.2);
}

.highlightedRow{
    background: rgba(255, 255, 255, 0.2);
}

.highlightedColumn{
    background: rgba(255, 255, 255, 0.2);
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.1);
}

td.raceNumFingerPointer:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.1); 
}
.raceNumFingerPointer {
    cursor: pointer;
}
td.raceNumFingerPointer:hover{
    background: rgba(255, 255, 255, 0.2);
}

tr.highlightedRow {
    background: rgba(255, 255, 255, 0.2); /* Change color as needed */
}

/* Highlighted column on hover */
td.highlightedColumn {
    background-color: rgba(255, 255, 255, 0.2); /* Change color as needed */
}