
.big-button {
    font-size: 2rem;
}

.pandas-table {
    width: 80%;
    max-height: 50vh;
    overflow: auto;
    font-size: 0.7rem;
    margin: 1rem auto 1.5rem auto;

}

div[data-disabled] {
    position: relative;
    pointer-events: none;
}
.input-group{
    align-items: end;
}
div[data-disabled]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.6;
    z-index: 0;
}

.disabled-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

div[data-disabled] .disabled-text {
    display: block;
    opacity: 1;
}
div[data-disabled] #opacityCards {
    pointer-events: none;
    opacity: 0.6;

}

.medium-size {
    font-size: 1.3rem;
}

.resultsContainer {
    margin-top: 1.5rem;
}

.hidden {
    display: none;
}

.resultsItem {
    background-color: whitesmoke;
    text-align: center;
    padding: 1rem;

}

main > h1, main > h2 {
    margin-left: 1rem;
}

.nav-pills .nav-link {
    color: #fff; /* Color del texto */
}

.my-select-class option {
    padding-right: 1rem;
    padding-left: 0.4rem; /* Ajusta este valor a tus necesidades */
}

.nav-pills .nav-link:hover {
    color: #fff; /* Color del texto al pasar el mouse */
    background-color: #353535; /* Color de fondo al pasar el mouse */
}

.nav-pills .nav-link.active {
    color: #fff; /* Color del texto cuando está activo */
    background-color: #4a4a4a; /* Color de fondo cuando está activo */

}

.item {
    width: 80%;
    margin: 0 auto 1rem auto;
}

.max400 {
    max-width: 400px;
}

.w90 {
    width: 95%;
    margin: auto;
}

.margin-button button {
    margin-top: 1rem;
}

.center_tab {
    width: 95%;
    margin: auto;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0px 0px 5px 5px;
    padding: 1.5rem;
}


.autoGridLists {
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
}


.autofitGraphs {
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr) );
}

.rotated {
    transform: rotate(90deg);
}

.autofitGrid {
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr) );
}


.bold {
    font-weight: bold;
}

.flexCont {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
}

.push-right {
    margin-left: auto;
}

.operator {
    border-color: black;
    border-style: solid;
    border-width: thin;
    background: white;
    padding: 0.5em;
}

.row {
    margin-bottom: 1rem;
}

.flexible {
    flex: 1 1 0;
}

.page-link {

    color: black

}

.page-link:hover {

    color: #fff

}

.page-item.active .page-link {

    color: #fff;
    background-color: black;
    border-color: gray;
}