.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.profile-item {
    position: relative;
    padding: 15px;
    background-color: var(--bg-color, var(--card-bg));
    border: 1px solid var(--input-border, var(--border-color));
    border-radius: var(--border-radius, 8px);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.profile-item:hover {
    background-color: var(--button-bg, var(--accent-color));
    color: white;
    transform: translateY(-2px);
}

.profile-item-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-item-count {
    font-size: 0.9rem;
    opacity: 0.7;
}
