/* Tambahkan di style.css */
.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px 0;
}

.stat-item {
    padding: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.result-table th {
    background: #4a5568;
    color: white;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: #c6f6d5;
    color: #22543d;
}

.status-inactive {
    background: #fed7d7;
    color: #742a2a;
}

.status-checking {
    background: #feebc8;
    color: #744210;
}

.btn-success {
    background: #38a169;
    color: white;
}

.btn-success:hover {
    background: #2f855a;
}

/* Responsive table */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
}