/* Start custom CSS for html, class: .elementor-element-ab23e17 */#network-status-container {
    position: fixed;
    bottom: 40px;
    left: 15px;
    z-index: 9999;
    direction: rtl;
    font-family: Tahoma, sans-serif;
}

.network-badge {
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid #39ff14;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.network-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.45);
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: #39ff14;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.network-panel {
    position: absolute;
    bottom: 62px;
    left: 0;
    width: 260px;
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid #2b2b2b;
    border-radius: 14px;
    padding: 14px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#network-status-container:hover .network-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.panel-header {
    font-size: 12px;
    color: #9aa0a6;
    border-bottom: 1px solid #2d2d2d;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.6;
}

.value {
    font-weight: 700;
    color: #39ff14;
    direction: ltr;
    text-align: left;
}

.network-stability {
    color: #00e676;
}

.panel-footer {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #2d2d2d;
    font-size: 11px;
    color: #8b949e;
}

@media (max-width: 767px) {
    #network-status-container {
        bottom: 75px;
        left: 20px;
    }

    .network-badge {
        padding: 9px 16px;
    }

    .badge-text {
        font-size: 13px;
    }

    .network-panel {
        width: 220px;
    }
}/* End custom CSS */