/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
.row-service-sim {
    margin: 0;
    padding: 0;
}
.row-service-sim > div {
    padding: 0 !important;
}

.icon-service {
    margin-top: 20px;
    font-size: 83px;
   
}
.icon-service.connect{

    color: #90bc1b;

}

.icon-service.disconnect{

    color: red;

}


.row-service-sim{

padding-bottom: 10px;

}
.row-back-sim{
    padding-bottom: 10px;
}
.vertical-center{
    padding-top: 20px;
    vertical-align: middle;
}
.row-service-details{
    font-weight: 100;
    border-bottom: 2px solid #f1f1f1;
    border-top: 2px solid #f1f1f1;
    padding: 10px 0px 10px 0px;
}
.list-sim-id{
    font-size: 20px !important;
color: #8ec009;

}
#editableTitle{

    margin-bottom: 5px !important;
}

.status-conect::after {
    background-color: var(--circle-color, gray); /* Color predeterminado */
}

/* Estilo para la clase status-conect */
.status-conect {
    position: relative;
    padding-right: 25px; /* Espacio para el círculo */

    display: inline-flex;
    align-items: center;
    margin-bottom: 6px
}

/* Círculo de estado usando el pseudo-elemento ::after */
.status-conect::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: gray; /* Color predeterminado */
}

/* Color verde para CONNECT */
.status-conect.connect::after {
    background-color: green;
}

/* Color rojo para DISCONNECT */
.status-conect.disconnect::after {
    background-color: red;
}

/* Estilos de subrayado solo para el texto cuando el estado es conectado */
.status-conect.connected .status-text {
    text-decoration: underline;
    cursor: pointer; /* Indica que tiene información adicional */
}

/* Indicador online con efecto ping elegante */
.status-indicator-connected {
    position: relative;
    background-color: #22c55e !important; /* Verde más vibrante */
    overflow: visible;
}

.status-indicator-connected::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: rgba(34, 197, 94, 0.3); /* Verde con 30% opacidad */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ping-slow 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-slow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}