.padiksm-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-family: Arial, sans-serif;
}

.padiksm-status-card {
    box-sizing: border-box;
    width: 180px;
    min-height: 64px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.padiksm-status-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.padiksm-service-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.padiksm-status-dot {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    border-radius: 50%;
}

.padiksm-status-dot.is-loading {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
    animation: padiksm-pulse 1s infinite;
}

.padiksm-status-dot.is-online {
    background: #34c759;
    box-shadow: 0 0 10px #34c759, 0 0 20px #34c759;
}

.padiksm-status-dot.is-offline {
    background: #ff3b30;
    box-shadow: 0 0 10px #ff3b30, 0 0 20px #ff3b30;
}

.padiksm-status-dot.is-pending {
    background: #ff9500;
    box-shadow: 0 0 10px #ff9500, 0 0 20px #ff9500;
}

.padiksm-status-dot.is-unknown {
    background: #8e8e93;
    box-shadow: 0 0 10px #8e8e93, 0 0 20px #8e8e93;
}

@keyframes padiksm-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.6;
    }
}

@media (max-width: 600px) {
    .padiksm-status-card {
        width: 100%;
    }
}
