/* Update CSS untuk mencegah tampilan terpotong */
.search-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.user-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.user-name-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: #2d3436;
    margin: 10px 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Nama maksimal 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    min-height: 1.9em; /* Menjaga tinggi tetap konsisten */
}