.container__map{
    width: 100%;
    height: auto;
    padding-left: 3em;
    padding-right: 3em;
}

#map { 
    height: 400px; 
}

#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; 
}

h2 {
    margin-top: 1em;
    color: var(--lightblue-color);
    text-align: center;
}

.category__section{
    width: 100%;
    height: auto;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    margin: 1em;
}

.category__section p{
    color: var(--grey-color);
}

.category__section select{
    width: 150px;
    background: none;
    color: var(--grey-color);
}

.subtittle{
    text-align: center;
    color: var(--grey-color);
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--black-color-transparent);
    margin-top: 15px;
    border-style: groove;
    border: 5px solid var(--yellow-color);
}

input[type="text"], input[type="number"] {
    padding: 8px;
    width: 100%;
    max-width: 250px;
    margin: 5px;
    border-radius: 6px;
    border: 1px solid var(--yellow-color);
    font-size: 14px;
}

button {
    padding: 8px 16px;
    background-color: var(--lightblue-color);
    border: none;
    color: var(--white-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin: 5px;
}

button:hover {
    background-color: var(--lightblue-color);
}
.subtitle {
    font-size: 16px;
    color: var(--grey-color);
    margin-bottom: 20px;
}

.category-section {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.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;
}

.zoom-combobox {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--silver-color);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.zoom-combobox:hover {
    transform: scale(1.1);
    border-color: var(--lightblue-color);
}
#tarifa, #resultadoNegociacion {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid var(--yellow-color);
    max-width: 100%;
    border-right: 4px solid var(--yellow-color);
    width: 300px;
}

#negociacion {
    margin-top: 20px;
    max-width: 400px;
}

/*
==========
Screen in 600px.
==========
*/

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    input[type="text"], input[type="number"] {
        max-width: 100%;
    }

    button {
        width: 100%;
    }

    #map {
        height: 400px;
    }
    .result__section{
        width: 100%;
        display: table;
        padding: 1em;
    }

    .container__source{
        display: flex;
        flex-direction: column;
        gap: 1em;
        
    }
}