.chart-container {
    position: relative;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: .25rem;
}
.kpi-card-header {
    white-space: nowrap;      /* Evita que el texto se divida en varias líneas */
    overflow: hidden;         /* Oculta el texto que se desborda del contenedor */
    text-overflow: ellipsis;  /* Añade "..." al final del texto cortado */
}
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#whatsapp-button:hover {
    background-color: #12b854;
}

.button-text {
    display: none;
}

.fab.fa-whatsapp {
    font-size: 28px;
    color: #fff;
}

@media (min-width: 100px) {
    .button-text {
        display: block;
        font-size: 20px;
        margin-left: 3px;
    }
}

.has_response_btn{
    font-weight: bolder
}
.account_balance_container {

    font-size: larger;
    color: #000000;
    font-weight: bolder;
}

img.account_balance {
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
    height: 40px;
    width: 40px;
    margin: 10px;
}

img.account_balance:hover {
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

img.provider_disabled {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

img.apk {
    width:100%;
    min-height: 290px;
    max-width:640px;
    max-height: 290px;
}

img.download {
    width:100%;
    min-height: 795px;
    max-width:640px;
    max-height: 795px;
}
video.downloads {
    width:100%;
    min-height: 290px;
    max-width:524px;
    max-height: 290px;
}

.overlay {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
    z-index: 9999; /* Z-index alto para asegurar que esté en la parte superior */
}

.loading-message {
    background-color: #fff; /* Fondo del mensaje */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra alrededor del mensaje */
}