#map { 
    height: 500px; 
}

#container-map-race .title__three{
    color: var(--darkblue-color);
    text-align: center;
}

#container-map-race .normal{
    color: var(--grey-color);
    text-align: center;
    padding-bottom: 1em;
}

#container-map-race .container__actions{
    display: flex;
    justify-content: center;
}

#tarifa { 
    margin-top: 10px; 
    font-size: 18px; 
    font-weight: bold; 
    color: var(--grey-color);
    text-align: center;
    margin-bottom: .5em;
}

input[type="number"] { 
    padding: 5px; 
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 15px;
    border-style: groove;
    border: 5px solid #ffde01;
}

input[type="text"], input[type="number"] {
    padding: 8px;
    width: 100%;
    max-width: 250px;
    margin: 5px;
    border-radius: 6px;
    border: 1px solid #ffde01;
    font-size: 14px;
}

.cuadro{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result__section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--grey-color);
    margin-bottom: 2em;
    padding: 1em;
}

.result__section h3{
    display: block;
    margin: 1em;
}

.container__source{
    display: flex;
    gap: 1em;
}

.container__source label{
    font-weight: bold;
}

#tarifa, #resultadoNegociacion {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid #fedd00;
    max-width: 100%;
    border-right: 4px solid #fedd00;
    width: 300px;
}

.container__result__serach{
    width: 100%;
    height: auto;
    overflow: auto;
    max-height: 400px;
}

.empty__result{
    width: 100%;
    height: auto;
    padding: 1em;
    text-align: center;
    color: var(--grey-color);
}

#container-map-race .container__data{
    display: flex;
    gap: 1em;
    align-items: center;
}

#container-map-race .indicator{
    font-weight: bold;
    color: var(--darkblue-color);
}

#container-map-race .normal{
    color: var(--grey-color);
}

#observation-race{
    border: 1px solid var(--grey-color);
    border-radius: 5px;
    outline: none;
    width: 100%;
    height: 100px;
    max-width: 100%;
    max-height: 100px;
    min-width: 100%;
    min-height: 100px;
    background: none;
    color: var(--darkblue-color);
    padding: 5px;
    margin-bottom: 1em;
}

.button__darkblue svg{
    fill: var(--white-color);
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    input[type="text"], input[type="number"] {
        max-width: 100%;
    }

    #map {
        height: 400px;
    }
    .result__section{
        width: 100%;
        display: table;
        padding: 1em;
    }

    .container__source{
        display: flex;
        flex-direction: column;
        gap: 1em;
        
    }
}