.stats-center-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.guru-stats-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50px;
    padding: 10px 30px 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(93, 156, 236, 0.3);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-info h4 {
    color: var(--white);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-info span {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    background: rgba(0,0,0,0.1);
    padding: 2px 10px;
    border-radius: 10px;
}

.table-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 10px; 
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.guru-table {
    width: 100%;
    border-collapse: collapse;
}

.guru-table thead th {
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-weight: 700;
    padding: 18px 15px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.95rem;
    white-space: nowrap;
    text-align: center;
}

.guru-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.guru-table tbody tr:hover {
    background-color: #fcfcfc;
}

.guru-table tbody tr:last-child td {
    border-bottom: none;
}

.guru-img-thumb {
    width: 60px;
    height: 80px; 
    object-fit: cover;
    border-radius: 6px;
    background-color: #eee;
    border: 1px solid #e0e0e0;
    display: block;
}

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

.status-badge.tetap {
    background-color: #e3fcef;
    color: #00a854;
}

.status-badge.honorer {
    background-color: #fff7e6;
    color: #fa8c16;
}

.table-responsive {
    overflow-x: auto;
    text-align: center;
}

@media (max-width: 768px) {
    .guru-stats-box {
        padding: 10px 20px;
        gap: 10px;
        border-radius: 30px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-info h4 {
        font-size: 0.85rem;
    }

    .stat-info span {
        font-size: 1.2rem;
        padding: 2px 8px;
    }

    .table-card {
        padding: 0;
    }

    .guru-table thead th,
    .guru-table tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .guru-img-thumb {
        width: 45px;
        height: 60px;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
}