/* ILoveWebring Widget Styles */

#ilovewebring {
    z-index: 999;
}

.badge-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-ping {
    position: relative;
    width: 20px;
    height: 20px;
}

.ping-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 192, 203, 0.4);
    animation: ping 1.5s infinite;
}

.ping-count {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffb7d5;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    z-index: 2;
    font-size: 12px;
}

@keyframes ping {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    80% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.badge-button {
    background: #ffd5f0;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-text {
    font-family: "Arial", sans-serif;
    color: #b389ff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.badge-text span:last-child {
    font-weight: normal;
    font-size: 12px;
    opacity: 0.8;
}

.badge-inner a {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    text-decoration: none;
    color: #b389ff;
    padding: 2px 4px;
    transition: 0.15s ease;
}

.badge-inner a:hover {
    opacity: 0.75;
}