
.cFondo h1{
    color: darkblue;
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
}
.cEsquema{
    width: 95%;
    min-width: 200px;
    max-width: 500px;
    border: 1px solid silver;
    border-radius: 5px;
    display: flex; flex-direction: column;
}
.cEsquema .cBarraEncab{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    width: 100%;
    background: linear-gradient(to right, rgb(27, 102, 25) 0%, rgb(116, 209, 120) 100%);
    box-sizing: border-box;
    min-width: 28px;
    display: flex; flex-direction: row; align-items: center;
}
.cEsquema .cBarraEncab img{
    padding: 5px;
}
.cEsquema span{
    color: white;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    padding: 5px;
}
.cContEsquema{
    padding: 10px;
    display: flex; flex-direction: column;
}
.cFase{
    /*margin-top: 8px;*/
    color: chocolate;
    font-weight: bold;
}
.cSerie{
    color: blue;
    font-weight: bold;
    padding-left: 30px;
}
.cManga{
    padding-left: 30px;
}
.cEsquema a{
    padding: 5px;
    color: inherit;
    text-decoration: none;
    display: flex; flex-direction: row;
}
.cEsquema a:hover{
    background: linear-gradient(to bottom, rgba(252,234,187,1) 0%, rgba(252,205,77,1) 50%, rgba(248,181,0,1) 51%, rgba(251,223,147,1) 100%);
    border-radius: 4px;
}
.cEsquema .cIcono{
    min-width: 30px;
    display: flex; flex-direction: row; align-items: center; justify-content: center;
}
.cNombre{
    width: 100%;
    font-size: 18px;
}
.cEstado0, .cEstado2, .cEstado3, .cEstado4, .cEstado5, .cResult, .cOrdPart {
    padding: 5px;
    min-width: 45px;
    font-size: 10px;
    text-align: right;
}
.cEstado2{
    box-shadow: inset 2px 2px 2px rgba(255,255,255,.7), inset -2px -2px 2px rgba(0,0,0,.1), 2px 2px 8px rgba(0,0,0,.1);
    border: 1px solid #ffa79b;  /* Borde */
    background: #e72b24;        /* Fondo */
    text-align: center;           /* Alineación del texto */
    text-shadow: -1px -1px rgba(0,0,0,.2);  /* Sombra del texto */
    border-radius: 5px;           /* Bordes redondos */
    color: white;               /* Color del texto */
} 
.cEstado5{ color: green; }
.cResult{ min-width: 120px; }
.cOrdPart{ min-width: 120px; }
.cTiempo{
    text-align: right;
    padding: 5px;
    min-width: 30px;
    font-size: 12px;
}

/*========== Boton lista pilotos ==========*/
.cListaPilotos{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cListaPilotos button{
    background: linear-gradient(to bottom, rgb(116, 192, 219) 0%, rgb(40, 149, 185) 49%, rgb(18, 102, 128) 51%, rgb(79, 151, 182) 100%);
    font-size: 18px;
    margin: 15px;
    padding: 10px;
    transition: color 500ms;
    min-width: 300px;
    justify-content: right;
}
.cListaPilotos button img{
    padding-right: 10px;
}
.cListaPilotos button:hover{
    color: lightblue;
    text-shadow: 0px 0px 4px darkblue;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

