body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F5F5;
}

.bg-image-vertical {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

@media (min-width: 1025px) {
    .h-custom-2 {
        height: 100%;
    }
}

.logo {
    width: 100px;
}

/* cajas inicio */

.stats-card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #a855f7;
    /* morado */
    padding: 0.8rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.stats-icon {
    background-color: #a855f7;
    color: white;
    border-radius: 50%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.stats-change {
    font-size: 0.875rem;
    color: #16a34a;
    /* verde */
}

/*inicio modal registro llamada zadarma*/

.llamada-pbx-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background-color: transparent;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1055;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

/* Cuando está visible */
.llamada-pbx-panel.active {
    transform: translateX(0%);
}