.form-select {
    border-radius: 25px;
    background-color: #006eb8;
    border-color: #006eb8;
    color: white;
    padding: 5px 25px 5px 15px;
    font-weight: bold;
    margin: 5px;
    width: auto;
}

.button-buscar {
    padding: 5px 25px 5px 15px;
    font-weight: bold;
    margin: 5px;
    background-color: #0993b7;
    color: white;
    border: none;
}

.button-limpar {
    padding: 5px 25px 5px 15px;
    font-weight: bold;
    margin: 5px;

    background-color: #666;
    color: #fff;
    text-align: center;
    border: none;
}

.button-descargar {
    padding: 0;
    font-weight: bold;
    margin: 0;
    background-color: white;
    color: #168821;
    border: none;
}

.form-select option {
    background-color: white;
    color: black;
    font-weight: normal;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #D5E8F2;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #FFFFFF;
}

.header-map {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.title-border {
    margin-right: 10px;
    background-color: #000000fc;
    border: none;
    color: #fff;
    display: inline-block;
    padding: 5px 25px;
    font-weight: 700;
}

.round-button {
    margin-left: 10px;
    width: 35px;
    height: 35px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.round-button:hover {
    background-color: #9e9e9e;
}

.round-border {
    border-radius: 25px;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.map {
    width: auto;
    height: 550px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.chart-bar {
    height: 350px;
    background-color: #f0f0f0;
    border-radius: 25px;
    justify-content: center;
}

.header-chart {
    position: relative;
    width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.chart-title {
    margin-top: 10px;
    width: auto;
    padding: 5px 15px;
    text-align: center;
    text-transform: uppercase;
}

.bg-help6 {
    background-color: #fff !important;
    border: solid 2px #344e5f !important;
    color: #344e5f !important;
}

.font-bold {
    font-weight: 700 !important;
}

table th,
table td {
    padding-left: 2.5px;
    padding-right: 2.5px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
}

.text-th {
    display: flex;
    align-items: center;
}

.info-button {
    position: relative;
    background-color: transparent;
    border: none;
}

.text-th .info-button i {
    font-size: 12px;
}

.chart-info-icon {
    position: absolute;
    right: 0px;
}

.tooltip {
    display: none;
    background-color: #00b5e2 !important;
    color: white;
    padding: 7px 10px;
    border-radius: 8px;
    position: absolute;
    z-index: 9999;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.2;
    height: auto;
    width: 200px;
}

.info-button:hover .tooltip {
    display: block;
}


.smaller-font {
    font-size: 0.8em;
}

.padding-bars {
    padding: 10px;
}

.overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.spinner-border {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    border: 0.5em solid #006eb8;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    color: #006eb8;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}